pub enum AdtlChunk {
Labl(LablChunk),
Note(NoteChunk),
Ltxt(LtxtChunk),
File(FileChunk),
}
Expand description
Variants§
Implementations§
Source§impl AdtlChunk
impl AdtlChunk
pub fn read( reader: &mut impl Reader, text_encoding: &StringCodecMaps, ) -> Result<Self, AudioReadError>
pub fn write( &self, writer: &mut dyn Writer, text_encoding: &StringCodecMaps, ) -> Result<(), AudioWriteError>
pub fn get_cue_point_id(&self) -> u32
Trait Implementations§
Source§impl Ord for AdtlChunk
impl Ord for AdtlChunk
Source§impl PartialOrd for AdtlChunk
impl PartialOrd for AdtlChunk
impl Eq for AdtlChunk
impl StructuralPartialEq for AdtlChunk
Auto Trait Implementations§
impl Freeze for AdtlChunk
impl RefUnwindSafe for AdtlChunk
impl Send for AdtlChunk
impl Sync for AdtlChunk
impl Unpin for AdtlChunk
impl UnwindSafe for AdtlChunk
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