pub struct HashCmd {
output: PathBuf,
cluster_file: PathBuf,
}
Expand description
Compute a hash for each cluster.
Fields§
§output: PathBuf
Specify output file
cluster_file: PathBuf
Specify input file
Trait Implementations§
Source§impl From<HashCmd> for ClusterCommand
impl From<HashCmd> for ClusterCommand
Source§fn from(v: HashCmd) -> ClusterCommand
fn from(v: HashCmd) -> ClusterCommand
Converts to this type from the input type.
Source§impl FromArgMatches for HashCmd
impl FromArgMatches for HashCmd
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches
to self
.Source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches
to self
.Auto Trait Implementations§
impl Freeze for HashCmd
impl RefUnwindSafe for HashCmd
impl Send for HashCmd
impl Sync for HashCmd
impl Unpin for HashCmd
impl UnwindSafe for HashCmd
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more