#[repr(C)]
pub struct IPlugViewVtbl {
Show 13 fields pub base: FUnknownVtbl, pub isPlatformTypeSupported: unsafe extern "system" fn(this: *mut IPlugView, type: FIDString) -> tresult, pub attached: unsafe extern "system" fn(this: *mut IPlugView, parent: *mut c_void, type: FIDString) -> tresult, pub removed: unsafe extern "system" fn(this: *mut IPlugView) -> tresult, pub onWheel: unsafe extern "system" fn(this: *mut IPlugView, distance: f32) -> tresult, pub onKeyDown: unsafe extern "system" fn(this: *mut IPlugView, key: char16, keyCode: int16, modifiers: int16) -> tresult, pub onKeyUp: unsafe extern "system" fn(this: *mut IPlugView, key: char16, keyCode: int16, modifiers: int16) -> tresult, pub getSize: unsafe extern "system" fn(this: *mut IPlugView, size: *mut ViewRect) -> tresult, pub onSize: unsafe extern "system" fn(this: *mut IPlugView, newSize: *mut ViewRect) -> tresult, pub onFocus: unsafe extern "system" fn(this: *mut IPlugView, state: TBool) -> tresult, pub setFrame: unsafe extern "system" fn(this: *mut IPlugView, frame: *mut IPlugFrame) -> tresult, pub canResize: unsafe extern "system" fn(this: *mut IPlugView) -> tresult, pub checkSizeConstraint: unsafe extern "system" fn(this: *mut IPlugView, rect: *mut ViewRect) -> tresult,
}

Fields§

§base: FUnknownVtbl§isPlatformTypeSupported: unsafe extern "system" fn(this: *mut IPlugView, type: FIDString) -> tresult§attached: unsafe extern "system" fn(this: *mut IPlugView, parent: *mut c_void, type: FIDString) -> tresult§removed: unsafe extern "system" fn(this: *mut IPlugView) -> tresult§onWheel: unsafe extern "system" fn(this: *mut IPlugView, distance: f32) -> tresult§onKeyDown: unsafe extern "system" fn(this: *mut IPlugView, key: char16, keyCode: int16, modifiers: int16) -> tresult§onKeyUp: unsafe extern "system" fn(this: *mut IPlugView, key: char16, keyCode: int16, modifiers: int16) -> tresult§getSize: unsafe extern "system" fn(this: *mut IPlugView, size: *mut ViewRect) -> tresult§onSize: unsafe extern "system" fn(this: *mut IPlugView, newSize: *mut ViewRect) -> tresult§onFocus: unsafe extern "system" fn(this: *mut IPlugView, state: TBool) -> tresult§setFrame: unsafe extern "system" fn(this: *mut IPlugView, frame: *mut IPlugFrame) -> tresult§canResize: unsafe extern "system" fn(this: *mut IPlugView) -> tresult§checkSizeConstraint: unsafe extern "system" fn(this: *mut IPlugView, rect: *mut ViewRect) -> tresult

Trait Implementations§

source§

impl Clone for IPlugViewVtbl

source§

fn clone(&self) -> IPlugViewVtbl

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 IPlugViewVtbl

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.