pub struct IITObject(/* private fields */);Expand description
IITObject Interface
See the generated IITObject_Impl trait for more documentation about each function.
Implementations§
Source§impl IITObject
impl IITObject
pub unsafe fn GetITObjectIDs( &self, sourceID: *mut i32, playlistID: *mut i32, trackID: *mut i32, databaseID: *mut i32, ) -> HRESULT
pub unsafe fn Name(&self, Name: *mut BSTR) -> HRESULT
pub unsafe fn set_Name(&self, Name: BSTR) -> HRESULT
pub unsafe fn Index(&self, Index: *mut i32) -> HRESULT
pub unsafe fn sourceID(&self, sourceID: *mut i32) -> HRESULT
pub unsafe fn playlistID(&self, playlistID: *mut i32) -> HRESULT
pub unsafe fn trackID(&self, trackID: *mut i32) -> HRESULT
pub unsafe fn TrackDatabaseID(&self, databaseID: *mut i32) -> HRESULT
Trait Implementations§
Source§impl Interface for IITObject
impl Interface for IITObject
Source§impl Vtable for IITObject
impl Vtable for IITObject
type Vtable = IITObject_Vtbl
Source§fn as_raw(&self) -> *mut c_void
fn as_raw(&self) -> *mut c_void
Returns the raw COM interface pointer. The resulting pointer continues to be owned by the
Interface implementation.Source§fn into_raw(self) -> *mut c_void
fn into_raw(self) -> *mut c_void
Returns the raw COM interface pointer and releases ownership. It the caller’s responsibility to release the COM interface pointer.
impl Eq for IITObject
Auto Trait Implementations§
impl Freeze for IITObject
impl RefUnwindSafe for IITObject
impl !Send for IITObject
impl !Sync for IITObject
impl Unpin for IITObject
impl UnwindSafe for IITObject
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