pub struct Copyright {
pub country_indicator: u16,
pub language_indicator: u16,
pub text: String,
}Expand description
An iTunes-style copyright notice, written by FFmpeg and iTunes for the
copyright metadata key.
This lives inside moov/udta/meta/ilst and shares its fourcc with the
unrelated ISO CopyrightBox ([cprt]) found directly under udta — the
two have completely different layouts. It is deliberately NOT part of the
global Any dispatch; Ilst decodes it by header.
Fields§
§country_indicator: u16§language_indicator: u16§text: StringTrait Implementations§
impl Eq for Copyright
impl StructuralPartialEq for Copyright
Auto Trait Implementations§
impl Freeze for Copyright
impl RefUnwindSafe for Copyright
impl Send for Copyright
impl Sync for Copyright
impl Unpin for Copyright
impl UnsafeUnpin for Copyright
impl UnwindSafe for Copyright
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