pub struct Vst3TransportInfo {
pub playhead_sample: i64,
pub playing: bool,
pub tempo: f64,
pub tsig_num: i32,
pub tsig_denom: i32,
}Expand description
Transport info for VST3 processing.
Fields§
§playhead_sample: i64§playing: bool§tempo: f64§tsig_num: i32§tsig_denom: i32Trait Implementations§
Source§impl Clone for Vst3TransportInfo
impl Clone for Vst3TransportInfo
Source§fn clone(&self) -> Vst3TransportInfo
fn clone(&self) -> Vst3TransportInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Vst3TransportInfo
impl Debug for Vst3TransportInfo
Source§impl Default for Vst3TransportInfo
impl Default for Vst3TransportInfo
Source§fn default() -> Vst3TransportInfo
fn default() -> Vst3TransportInfo
Returns the “default value” for a type. Read more
impl Copy for Vst3TransportInfo
Auto Trait Implementations§
impl Freeze for Vst3TransportInfo
impl RefUnwindSafe for Vst3TransportInfo
impl Send for Vst3TransportInfo
impl Sync for Vst3TransportInfo
impl Unpin for Vst3TransportInfo
impl UnsafeUnpin for Vst3TransportInfo
impl UnwindSafe for Vst3TransportInfo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more