pub struct IITUserPlaylist(/* private fields */);Expand description
IITUserPlaylist Interface
See the generated IITUserPlaylist_Impl trait for more documentation about each function.
Implementations§
Source§impl IITUserPlaylist
impl IITUserPlaylist
pub unsafe fn AddFile( &self, filePath: BSTR, iStatus: *mut Option<IITOperationStatus>, ) -> HRESULT
pub unsafe fn AddFiles( &self, filePaths: *const VARIANT, iStatus: *mut Option<IITOperationStatus>, ) -> HRESULT
pub unsafe fn AddURL( &self, URL: BSTR, iURLTrack: *mut Option<IITURLTrack>, ) -> HRESULT
pub unsafe fn AddTrack( &self, iTrackToAdd: *const VARIANT, iAddedTrack: *mut Option<IITTrack>, ) -> HRESULT
pub unsafe fn Smart(&self, isSmart: *mut VARIANT_BOOL) -> HRESULT
pub unsafe fn SpecialKind( &self, SpecialKind: *mut ITUserPlaylistSpecialKind, ) -> HRESULT
pub unsafe fn Parent( &self, iParentPlayList: *mut Option<IITUserPlaylist>, ) -> HRESULT
pub unsafe fn CreatePlaylist( &self, playlistName: BSTR, iPlaylist: *mut Option<IITPlaylist>, ) -> HRESULT
pub unsafe fn CreateFolder( &self, folderName: BSTR, iFolder: *mut Option<IITPlaylist>, ) -> HRESULT
pub unsafe fn set_Parent(&self, iParentPlayList: *const VARIANT) -> HRESULT
pub unsafe fn Reveal(&self) -> HRESULT
Trait Implementations§
Source§impl Clone for IITUserPlaylist
impl Clone for IITUserPlaylist
Source§impl Debug for IITUserPlaylist
impl Debug for IITUserPlaylist
Source§impl From<&IITUserPlaylist> for IUnknown
impl From<&IITUserPlaylist> for IUnknown
Source§fn from(value: &IITUserPlaylist) -> Self
fn from(value: &IITUserPlaylist) -> Self
Converts to this type from the input type.
Source§impl From<IITUserPlaylist> for IUnknown
impl From<IITUserPlaylist> for IUnknown
Source§fn from(value: IITUserPlaylist) -> Self
fn from(value: IITUserPlaylist) -> Self
Converts to this type from the input type.
Source§impl Interface for IITUserPlaylist
impl Interface for IITUserPlaylist
Source§impl PartialEq for IITUserPlaylist
impl PartialEq for IITUserPlaylist
Source§impl RuntimeName for IITUserPlaylist
impl RuntimeName for IITUserPlaylist
Source§impl Vtable for IITUserPlaylist
impl Vtable for IITUserPlaylist
type Vtable = IITUserPlaylist_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 IITUserPlaylist
Auto Trait Implementations§
impl Freeze for IITUserPlaylist
impl RefUnwindSafe for IITUserPlaylist
impl !Send for IITUserPlaylist
impl !Sync for IITUserPlaylist
impl Unpin for IITUserPlaylist
impl UnwindSafe for IITUserPlaylist
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