pub enum ISRC {
None,
String(ISRCString),
}Expand description
An optional ISRC value
Variants§
None
An undefined ISRC value in which all bits are 0
String(ISRCString)
A defined ISRC value matching the ISRC format
Trait Implementations§
Source§impl FromBitStream for ISRC
impl FromBitStream for ISRC
Source§impl ToBitStream for ISRC
impl ToBitStream for ISRC
impl Eq for ISRC
impl StructuralPartialEq for ISRC
Auto Trait Implementations§
impl Freeze for ISRC
impl RefUnwindSafe for ISRC
impl Send for ISRC
impl Sync for ISRC
impl Unpin for ISRC
impl UnwindSafe for ISRC
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