pub struct DigArgs {
pub album_url: String,
pub max_collectors: usize,
pub max_depth: usize,
pub limit: usize,
pub sample: SampleMode,
pub min_overlap: usize,
pub exclude_artist: bool,
pub exclude_label: bool,
pub tag: Vec<String>,
pub sort: SortMode,
}Fields§
§album_url: String§max_collectors: usize§max_depth: usize§limit: usize§sample: SampleMode§min_overlap: usize§exclude_artist: bool§exclude_label: bool§tag: Vec<String>§sort: SortModeTrait Implementations§
Source§impl Args for DigArgs
impl Args for DigArgs
Source§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
Source§fn augment_args_for_update<'b>(__clap_app: Command) -> Command
fn augment_args_for_update<'b>(__clap_app: Command) -> Command
Append to
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§impl FromArgMatches for DigArgs
impl FromArgMatches for DigArgs
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 DigArgs
impl RefUnwindSafe for DigArgs
impl Send for DigArgs
impl Sync for DigArgs
impl Unpin for DigArgs
impl UnsafeUnpin for DigArgs
impl UnwindSafe for DigArgs
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