pub struct MinfAtomRefMut<'a>(/* private fields */);Implementations§
Source§impl<'a> MinfAtomRefMut<'a>
impl<'a> MinfAtomRefMut<'a>
pub fn as_ref(&self) -> MinfAtomRef<'_>
pub fn into_ref(self) -> MinfAtomRef<'a>
pub fn into_children(self) -> impl Iterator<Item = &'a mut Atom>
Sourcepub fn header(&mut self) -> GmhdAtomRefMut<'_>
pub fn header(&mut self) -> GmhdAtomRefMut<'_>
Finds or inserts the GMHD atom
Sourcepub fn sample_table(&mut self) -> StblAtomRefMut<'_>
pub fn sample_table(&mut self) -> StblAtomRefMut<'_>
Finds or inserts the STBL atom
Sourcepub fn into_sample_table(self) -> Option<StblAtomRefMut<'a>>
pub fn into_sample_table(self) -> Option<StblAtomRefMut<'a>>
Finds the STBL atom
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for MinfAtomRefMut<'a>
impl<'a> RefUnwindSafe for MinfAtomRefMut<'a>
impl<'a> Send for MinfAtomRefMut<'a>
impl<'a> Sync for MinfAtomRefMut<'a>
impl<'a> Unpin for MinfAtomRefMut<'a>
impl<'a> UnsafeUnpin for MinfAtomRefMut<'a>
impl<'a> !UnwindSafe for MinfAtomRefMut<'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