pub struct SoundVariationArgs {
pub variate_volume: Option<Vec<f32>>,
pub variate_tempo: Option<Vec<f32>>,
}Expand description
Variate pitch/volume/tempo.
Fieldsยง
ยงvariate_volume: Option<Vec<f32>>Variate volume +/- in percent.
variate_tempo: Option<Vec<f32>>Variate tempo +/- in percent.
Trait Implementationsยง
Sourceยงimpl Args for SoundVariationArgs
impl Args for SoundVariationArgs
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 Debug for SoundVariationArgs
impl Debug for SoundVariationArgs
Sourceยงimpl Default for SoundVariationArgs
impl Default for SoundVariationArgs
Sourceยงfn default() -> SoundVariationArgs
fn default() -> SoundVariationArgs
Returns the โdefault valueโ for a type. Read more
Sourceยงimpl From<SoundVariationArgs> for SoundVariation
impl From<SoundVariationArgs> for SoundVariation
Sourceยงfn from(args: SoundVariationArgs) -> Self
fn from(args: SoundVariationArgs) -> Self
Converts to this type from the input type.
Sourceยงimpl FromArgMatches for SoundVariationArgs
impl FromArgMatches for SoundVariationArgs
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 SoundVariationArgs
impl RefUnwindSafe for SoundVariationArgs
impl Send for SoundVariationArgs
impl Sync for SoundVariationArgs
impl Unpin for SoundVariationArgs
impl UnsafeUnpin for SoundVariationArgs
impl UnwindSafe for SoundVariationArgs
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