pub struct TrackEncryptionBox {
pub is_encrypted: u32,
pub iv_size: u8,
pub kid: Vec<u8>,
}
Fields§
§is_encrypted: u32
§iv_size: u8
§kid: Vec<u8>
Trait Implementations§
Source§impl Clone for TrackEncryptionBox
impl Clone for TrackEncryptionBox
Source§fn clone(&self) -> TrackEncryptionBox
fn clone(&self) -> TrackEncryptionBox
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TrackEncryptionBox
impl Debug for TrackEncryptionBox
Source§impl Default for TrackEncryptionBox
impl Default for TrackEncryptionBox
Source§fn default() -> TrackEncryptionBox
fn default() -> TrackEncryptionBox
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TrackEncryptionBox
impl RefUnwindSafe for TrackEncryptionBox
impl Send for TrackEncryptionBox
impl Sync for TrackEncryptionBox
impl Unpin for TrackEncryptionBox
impl UnwindSafe for TrackEncryptionBox
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