Struct AVSubsampleEncryptionInfo
#[repr(C)]pub struct AVSubsampleEncryptionInfo {
pub bytes_of_clear_data: u32,
pub bytes_of_protected_data: u32,
}
Fields§
§bytes_of_clear_data: u32
The number of bytes that are clear.
bytes_of_protected_data: u32
The number of bytes that are protected. If using pattern encryption, the pattern applies to only the protected bytes; if not using pattern encryption, all these bytes are encrypted.
Trait Implementations§
§impl Clone for AVSubsampleEncryptionInfo
impl Clone for AVSubsampleEncryptionInfo
§fn clone(&self) -> AVSubsampleEncryptionInfo
fn clone(&self) -> AVSubsampleEncryptionInfo
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 more§impl Debug for AVSubsampleEncryptionInfo
impl Debug for AVSubsampleEncryptionInfo
impl Copy for AVSubsampleEncryptionInfo
Auto Trait Implementations§
impl Freeze for AVSubsampleEncryptionInfo
impl RefUnwindSafe for AVSubsampleEncryptionInfo
impl Send for AVSubsampleEncryptionInfo
impl Sync for AVSubsampleEncryptionInfo
impl Unpin for AVSubsampleEncryptionInfo
impl UnwindSafe for AVSubsampleEncryptionInfo
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