Struct reaper_low::raw::midi_quantize_mode_t
source · [−]#[repr(C)]pub struct midi_quantize_mode_t {
pub doquant: bool,
pub movemode: c_char,
pub sizemode: c_char,
pub quantstrength: c_char,
pub quantamt: f64,
pub swingamt: c_char,
pub range_min: c_char,
pub range_max: c_char,
}
Expand description
PCM sink API
Fields
doquant: bool
movemode: c_char
sizemode: c_char
quantstrength: c_char
quantamt: f64
swingamt: c_char
range_min: c_char
range_max: c_char
Trait Implementations
sourceimpl Clone for midi_quantize_mode_t
impl Clone for midi_quantize_mode_t
sourcefn clone(&self) -> midi_quantize_mode_t
fn clone(&self) -> midi_quantize_mode_t
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for midi_quantize_mode_t
impl Debug for midi_quantize_mode_t
sourceimpl Default for midi_quantize_mode_t
impl Default for midi_quantize_mode_t
sourcefn default() -> midi_quantize_mode_t
fn default() -> midi_quantize_mode_t
Returns the “default value” for a type. Read more
sourceimpl PartialEq<midi_quantize_mode_t> for midi_quantize_mode_t
impl PartialEq<midi_quantize_mode_t> for midi_quantize_mode_t
sourcefn eq(&self, other: &midi_quantize_mode_t) -> bool
fn eq(&self, other: &midi_quantize_mode_t) -> bool
impl Copy for midi_quantize_mode_t
impl StructuralPartialEq for midi_quantize_mode_t
Auto Trait Implementations
impl RefUnwindSafe for midi_quantize_mode_t
impl Send for midi_quantize_mode_t
impl Sync for midi_quantize_mode_t
impl Unpin for midi_quantize_mode_t
impl UnwindSafe for midi_quantize_mode_t
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
sourcefn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
. Read moresourcefn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read moresourcefn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s. Read moresourcefn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s. Read more