pub struct PlaylistCollection { /* private fields */ }Expand description
Safe wrapper over a IITPlaylistCollection
Implementations§
Source§impl PlaylistCollection
impl PlaylistCollection
Sourcepub fn ItemByName(&self, name: &str) -> Result<Playlist>
pub fn ItemByName(&self, name: &str) -> Result<Playlist>
Returns an IITPlaylist object with the specified name.
Sourcepub fn ItemByPersistentID(&self, id: PersistentId) -> Result<Playlist>
pub fn ItemByPersistentID(&self, id: PersistentId) -> Result<Playlist>
Returns an IITPlaylist object with the specified persistent ID.
Trait Implementations§
Source§impl ITunesRelatedObject for PlaylistCollection
impl ITunesRelatedObject for PlaylistCollection
Source§fn iTunes_instance(&self) -> Arc<iTunes>
fn iTunes_instance(&self) -> Arc<iTunes>
Return the related iTunes instance this object is related to
Auto Trait Implementations§
impl Freeze for PlaylistCollection
impl RefUnwindSafe for PlaylistCollection
impl !Send for PlaylistCollection
impl !Sync for PlaylistCollection
impl Unpin for PlaylistCollection
impl UnwindSafe for PlaylistCollection
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