#[repr(C)]
pub struct IUnitInfoVtbl {
Show 13 fields pub base: FUnknownVtbl, pub getUnitCount: unsafe extern "system" fn(this: *mut IUnitInfo) -> int32, pub getUnitInfo: unsafe extern "system" fn(this: *mut IUnitInfo, unitIndex: int32, info: *mut UnitInfo) -> tresult, pub getProgramListCount: unsafe extern "system" fn(this: *mut IUnitInfo) -> int32, pub getProgramListInfo: unsafe extern "system" fn(this: *mut IUnitInfo, listIndex: int32, info: *mut ProgramListInfo) -> tresult, pub getProgramName: unsafe extern "system" fn(this: *mut IUnitInfo, listId: ProgramListID, programIndex: int32, name: *mut String128) -> tresult, pub getProgramInfo: unsafe extern "system" fn(this: *mut IUnitInfo, listId: ProgramListID, programIndex: int32, attributeId: CString, attributeValue: *mut String128) -> tresult, pub hasProgramPitchNames: unsafe extern "system" fn(this: *mut IUnitInfo, listId: ProgramListID, programIndex: int32) -> tresult, pub getProgramPitchName: unsafe extern "system" fn(this: *mut IUnitInfo, listId: ProgramListID, programIndex: int32, midiPitch: int16, name: *mut String128) -> tresult, pub getSelectedUnit: unsafe extern "system" fn(this: *mut IUnitInfo) -> UnitID, pub selectUnit: unsafe extern "system" fn(this: *mut IUnitInfo, unitId: UnitID) -> tresult, pub getUnitByBus: unsafe extern "system" fn(this: *mut IUnitInfo, type: MediaType, dir: BusDirection, busIndex: int32, channel: int32, unitId: *mut UnitID) -> tresult, pub setUnitProgramData: unsafe extern "system" fn(this: *mut IUnitInfo, listOrUnitId: int32, programIndex: int32, data: *mut IBStream) -> tresult,
}

Fields§

§base: FUnknownVtbl§getUnitCount: unsafe extern "system" fn(this: *mut IUnitInfo) -> int32§getUnitInfo: unsafe extern "system" fn(this: *mut IUnitInfo, unitIndex: int32, info: *mut UnitInfo) -> tresult§getProgramListCount: unsafe extern "system" fn(this: *mut IUnitInfo) -> int32§getProgramListInfo: unsafe extern "system" fn(this: *mut IUnitInfo, listIndex: int32, info: *mut ProgramListInfo) -> tresult§getProgramName: unsafe extern "system" fn(this: *mut IUnitInfo, listId: ProgramListID, programIndex: int32, name: *mut String128) -> tresult§getProgramInfo: unsafe extern "system" fn(this: *mut IUnitInfo, listId: ProgramListID, programIndex: int32, attributeId: CString, attributeValue: *mut String128) -> tresult§hasProgramPitchNames: unsafe extern "system" fn(this: *mut IUnitInfo, listId: ProgramListID, programIndex: int32) -> tresult§getProgramPitchName: unsafe extern "system" fn(this: *mut IUnitInfo, listId: ProgramListID, programIndex: int32, midiPitch: int16, name: *mut String128) -> tresult§getSelectedUnit: unsafe extern "system" fn(this: *mut IUnitInfo) -> UnitID§selectUnit: unsafe extern "system" fn(this: *mut IUnitInfo, unitId: UnitID) -> tresult§getUnitByBus: unsafe extern "system" fn(this: *mut IUnitInfo, type: MediaType, dir: BusDirection, busIndex: int32, channel: int32, unitId: *mut UnitID) -> tresult§setUnitProgramData: unsafe extern "system" fn(this: *mut IUnitInfo, listOrUnitId: int32, programIndex: int32, data: *mut IBStream) -> tresult

Trait Implementations§

source§

impl Clone for IUnitInfoVtbl

source§

fn clone(&self) -> IUnitInfoVtbl

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Copy for IUnitInfoVtbl

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.