pub struct SencSubsample {
pub bytes_of_clear_data: u16,
pub bytes_of_encrypted_data: u32,
}Available on crate feature
decrypt-cenc only.Expand description
A subsample encryption entry, dividing a sample into clear (unencrypted) and encrypted bytes.
Fields§
§bytes_of_clear_data: u16Number of clear (unencrypted) bytes in this subsample.
bytes_of_encrypted_data: u32Number of encrypted bytes in this subsample.
Trait Implementations§
Source§impl Clone for SencSubsample
impl Clone for SencSubsample
Source§fn clone(&self) -> SencSubsample
fn clone(&self) -> SencSubsample
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SencSubsample
impl RefUnwindSafe for SencSubsample
impl Send for SencSubsample
impl Sync for SencSubsample
impl Unpin for SencSubsample
impl UnsafeUnpin for SencSubsample
impl UnwindSafe for SencSubsample
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