Struct vst3::Steinberg::Vst::IAttributeListVtbl
source · #[repr(C)]pub struct IAttributeListVtbl {
pub base: FUnknownVtbl,
pub setInt: unsafe extern "system" fn(this: *mut IAttributeList, id: AttrID, value: int64) -> tresult,
pub getInt: unsafe extern "system" fn(this: *mut IAttributeList, id: AttrID, value: *mut int64) -> tresult,
pub setFloat: unsafe extern "system" fn(this: *mut IAttributeList, id: AttrID, value: f64) -> tresult,
pub getFloat: unsafe extern "system" fn(this: *mut IAttributeList, id: AttrID, value: *mut f64) -> tresult,
pub setString: unsafe extern "system" fn(this: *mut IAttributeList, id: AttrID, string: *const TChar) -> tresult,
pub getString: unsafe extern "system" fn(this: *mut IAttributeList, id: AttrID, string: *mut TChar, sizeInBytes: uint32) -> tresult,
pub setBinary: unsafe extern "system" fn(this: *mut IAttributeList, id: AttrID, data: *const c_void, sizeInBytes: uint32) -> tresult,
pub getBinary: unsafe extern "system" fn(this: *mut IAttributeList, id: AttrID, data: *mut *const c_void, sizeInBytes: *mut uint32) -> tresult,
}
Fields§
§base: FUnknownVtbl
§setInt: unsafe extern "system" fn(this: *mut IAttributeList, id: AttrID, value: int64) -> tresult
§getInt: unsafe extern "system" fn(this: *mut IAttributeList, id: AttrID, value: *mut int64) -> tresult
§setFloat: unsafe extern "system" fn(this: *mut IAttributeList, id: AttrID, value: f64) -> tresult
§getFloat: unsafe extern "system" fn(this: *mut IAttributeList, id: AttrID, value: *mut f64) -> tresult
§setString: unsafe extern "system" fn(this: *mut IAttributeList, id: AttrID, string: *const TChar) -> tresult
§getString: unsafe extern "system" fn(this: *mut IAttributeList, id: AttrID, string: *mut TChar, sizeInBytes: uint32) -> tresult
§setBinary: unsafe extern "system" fn(this: *mut IAttributeList, id: AttrID, data: *const c_void, sizeInBytes: uint32) -> tresult
§getBinary: unsafe extern "system" fn(this: *mut IAttributeList, id: AttrID, data: *mut *const c_void, sizeInBytes: *mut uint32) -> tresult
Trait Implementations§
source§impl Clone for IAttributeListVtbl
impl Clone for IAttributeListVtbl
source§fn clone(&self) -> IAttributeListVtbl
fn clone(&self) -> IAttributeListVtbl
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Copy for IAttributeListVtbl
Auto Trait Implementations§
impl RefUnwindSafe for IAttributeListVtbl
impl Send for IAttributeListVtbl
impl Sync for IAttributeListVtbl
impl Unpin for IAttributeListVtbl
impl UnwindSafe for IAttributeListVtbl
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