pub struct MdiaAtomRefMut<'a>(/* private fields */);Implementations§
Source§impl<'a> MdiaAtomRefMut<'a>
impl<'a> MdiaAtomRefMut<'a>
pub fn as_ref(&self) -> MdiaAtomRef<'_>
pub fn into_ref(self) -> MdiaAtomRef<'a>
pub fn children(&mut self) -> impl Iterator<Item = &mut Atom>
pub fn into_children(self) -> impl Iterator<Item = &'a mut Atom>
Sourcepub fn header(&mut self) -> &mut MediaHeaderAtom
pub fn header(&mut self) -> &mut MediaHeaderAtom
Finds or inserts the MDHD atom
Sourcepub fn handler_reference(&mut self) -> &mut HandlerReferenceAtom
pub fn handler_reference(&mut self) -> &mut HandlerReferenceAtom
Finds or inserts the HDLR atom
Sourcepub fn media_information(&mut self) -> MinfAtomRefMut<'_>
pub fn media_information(&mut self) -> MinfAtomRefMut<'_>
Finds or inserts the MINF atom
Sourcepub fn into_media_information(self) -> Option<MinfAtomRefMut<'a>>
pub fn into_media_information(self) -> Option<MinfAtomRefMut<'a>>
Finds the MINF atom
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for MdiaAtomRefMut<'a>
impl<'a> RefUnwindSafe for MdiaAtomRefMut<'a>
impl<'a> Send for MdiaAtomRefMut<'a>
impl<'a> Sync for MdiaAtomRefMut<'a>
impl<'a> Unpin for MdiaAtomRefMut<'a>
impl<'a> UnsafeUnpin for MdiaAtomRefMut<'a>
impl<'a> !UnwindSafe for MdiaAtomRefMut<'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