#[repr(C, packed(4))]pub struct AsioTimeCode {
pub speed: c_double,
pub time_code_samples: ASIOSamples,
pub flags: c_long,
pub future: [c_char; 64],
}Expand description
A rust-compatible version of the ASIOTimeCode type that does not use a binary blob for its
fields.
Fields§
§speed: c_doubleSpeed relation (fraction of nominal speed) optional.
Set to 0. or 1. if not supported.
time_code_samples: ASIOSamplesTime in samples unsigned.
flags: c_longSee ASIOTimeCodeFlags.
future: [c_char; 64]Set to 0.
Auto Trait Implementations§
impl Freeze for AsioTimeCode
impl RefUnwindSafe for AsioTimeCode
impl Send for AsioTimeCode
impl Sync for AsioTimeCode
impl Unpin for AsioTimeCode
impl UnwindSafe for AsioTimeCode
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