pub struct IITPlaylist(/* private fields */);Expand description
IITPlaylist Interface
See the generated IITPlaylist_Impl trait for more documentation about each function.
Implementations§
Source§impl IITPlaylist
impl IITPlaylist
pub unsafe fn Delete(&self) -> HRESULT
pub unsafe fn PlayFirstTrack(&self) -> HRESULT
pub unsafe fn Print( &self, showPrintDialog: VARIANT_BOOL, printKind: ITPlaylistPrintKind, theme: BSTR, ) -> HRESULT
pub unsafe fn Search( &self, searchText: BSTR, searchFields: ITPlaylistSearchField, iTrackCollection: *mut Option<IITTrackCollection>, ) -> HRESULT
pub unsafe fn Kind(&self, Kind: *mut ITPlaylistKind) -> HRESULT
pub unsafe fn Source(&self, iSource: *mut Option<IITSource>) -> HRESULT
pub unsafe fn Duration(&self, Duration: *mut i32) -> HRESULT
pub unsafe fn Shuffle(&self, isShuffle: *mut VARIANT_BOOL) -> HRESULT
pub unsafe fn set_Shuffle(&self, isShuffle: VARIANT_BOOL) -> HRESULT
pub unsafe fn Size(&self, Size: *mut f64) -> HRESULT
pub unsafe fn SongRepeat( &self, repeatMode: *mut ITPlaylistRepeatMode, ) -> HRESULT
pub unsafe fn set_SongRepeat(&self, repeatMode: ITPlaylistRepeatMode) -> HRESULT
pub unsafe fn Time(&self, Time: *mut BSTR) -> HRESULT
pub unsafe fn Visible(&self, isVisible: *mut VARIANT_BOOL) -> HRESULT
pub unsafe fn Tracks( &self, iTrackCollection: *mut Option<IITTrackCollection>, ) -> HRESULT
Trait Implementations§
Source§impl Clone for IITPlaylist
impl Clone for IITPlaylist
Source§impl Debug for IITPlaylist
impl Debug for IITPlaylist
Source§impl From<&IITPlaylist> for IUnknown
impl From<&IITPlaylist> for IUnknown
Source§fn from(value: &IITPlaylist) -> Self
fn from(value: &IITPlaylist) -> Self
Converts to this type from the input type.
Source§impl From<IITPlaylist> for IUnknown
impl From<IITPlaylist> for IUnknown
Source§fn from(value: IITPlaylist) -> Self
fn from(value: IITPlaylist) -> Self
Converts to this type from the input type.
Source§impl Interface for IITPlaylist
impl Interface for IITPlaylist
Source§impl PartialEq for IITPlaylist
impl PartialEq for IITPlaylist
Source§impl RuntimeName for IITPlaylist
impl RuntimeName for IITPlaylist
Source§impl Vtable for IITPlaylist
impl Vtable for IITPlaylist
type Vtable = IITPlaylist_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 IITPlaylist
Auto Trait Implementations§
impl Freeze for IITPlaylist
impl RefUnwindSafe for IITPlaylist
impl !Send for IITPlaylist
impl !Sync for IITPlaylist
impl Unpin for IITPlaylist
impl UnwindSafe for IITPlaylist
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