pub struct StblAtomRefMut<'a>(/* private fields */);Implementations§
Source§impl<'a> StblAtomRefMut<'a>
impl<'a> StblAtomRefMut<'a>
pub fn as_ref(&self) -> StblAtomRef<'_>
pub fn into_ref(self) -> StblAtomRef<'a>
pub fn into_children(self) -> impl Iterator<Item = &'a mut Atom>
Sourcepub fn sample_description(&mut self) -> &mut SampleDescriptionTableAtom
pub fn sample_description(&mut self) -> &mut SampleDescriptionTableAtom
Finds or inserts the STSD atom
Sourcepub fn time_to_sample(&mut self) -> &mut TimeToSampleAtom
pub fn time_to_sample(&mut self) -> &mut TimeToSampleAtom
Finds or inserts the STTS atom
Sourcepub fn sample_to_chunk(&mut self) -> &mut SampleToChunkAtom
pub fn sample_to_chunk(&mut self) -> &mut SampleToChunkAtom
Finds or inserts the STSC atom
Sourcepub fn sample_size(&mut self) -> &mut SampleSizeAtom
pub fn sample_size(&mut self) -> &mut SampleSizeAtom
Finds or inserts the STSZ atom
Sourcepub fn chunk_offset(&mut self) -> &mut ChunkOffsetAtom
pub fn chunk_offset(&mut self) -> &mut ChunkOffsetAtom
Finds or inserts the STCO atom
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for StblAtomRefMut<'a>
impl<'a> RefUnwindSafe for StblAtomRefMut<'a>
impl<'a> Send for StblAtomRefMut<'a>
impl<'a> Sync for StblAtomRefMut<'a>
impl<'a> Unpin for StblAtomRefMut<'a>
impl<'a> UnsafeUnpin for StblAtomRefMut<'a>
impl<'a> !UnwindSafe for StblAtomRefMut<'a>
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more