pub struct TrackEncryptionBox {
pub is_encrypted: u8,
pub iv_size: u8,
pub kid: TryVec<u8>,
pub crypt_byte_block_count: Option<u8>,
pub skip_byte_block_count: Option<u8>,
pub constant_iv: Option<TryVec<u8>>,
}
Fields§
§is_encrypted: u8
§iv_size: u8
§kid: TryVec<u8>
§crypt_byte_block_count: Option<u8>
§skip_byte_block_count: Option<u8>
§constant_iv: Option<TryVec<u8>>
Trait Implementations§
Source§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