pub enum AreaKind {
Library,
Liked,
Playlist {
id: String,
name: String,
},
}Expand description
Which kind of area a listing came from, carrying playlist identity so its
.m3u8 can be maintained by id and name.
Variants§
Auto Trait Implementations§
impl Freeze for AreaKind
impl RefUnwindSafe for AreaKind
impl Send for AreaKind
impl Sync for AreaKind
impl Unpin for AreaKind
impl UnsafeUnpin for AreaKind
impl UnwindSafe for AreaKind
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