#[repr(C, packed(4))]pub struct AsioTime {
pub reserved: [c_long; 4],
pub time_info: AsioTimeInfo,
pub time_code: AsioTimeCode,
}Expand description
A rust-usable version of the ASIOTime type that does not contain a binary blob for fields.
Fields§
§reserved: [c_long; 4]Must be 0.
time_info: AsioTimeInfoRequired.
time_code: AsioTimeCodeOptional, evaluated if (time_code.flags & ktcValid).
Auto Trait Implementations§
impl Freeze for AsioTime
impl RefUnwindSafe for AsioTime
impl Send for AsioTime
impl Sync for AsioTime
impl Unpin for AsioTime
impl UnsafeUnpin for AsioTime
impl UnwindSafe for AsioTime
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