pub enum MediaType {
Movie = 0,
Normal = 1,
AudioBook = 2,
WhackedBookmark = 5,
MusicVideo = 6,
ShortFilm = 9,
TvShow = 10,
Booklet = 11,
}Expand description
The iTunes media type of a file. This is stored in the stik atom.
Variants§
Movie = 0
A media type stored as 0 in the stik atom.
Normal = 1
A media type stored as 1 in the stik atom.
AudioBook = 2
A media type stored as 2 in the stik atom.
WhackedBookmark = 5
A media type stored as 5 in the stik atom.
MusicVideo = 6
A media type stored as 6 in the stik atom.
ShortFilm = 9
A media type stored as 9 in the stik atom.
TvShow = 10
A media type stored as 10 in the stik atom.
Booklet = 11
A media type stored as 11 in the stik atom.
Implementations§
Trait Implementations§
impl Copy for MediaType
impl Eq for MediaType
impl StructuralPartialEq for MediaType
Auto Trait Implementations§
impl Freeze for MediaType
impl RefUnwindSafe for MediaType
impl Send for MediaType
impl Sync for MediaType
impl Unpin for MediaType
impl UnwindSafe for MediaType
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