pub struct EnvelopeEntry {
pub envelope_index: u64,
pub first_block_index: u64,
pub data_block_count: u32,
pub parity_block_count: u32,
pub encrypted_size: u32,
pub plaintext_size: u32,
pub first_frame_index: u64,
pub frame_count: u32,
}Fields§
§envelope_index: u64§first_block_index: u64§data_block_count: u32§parity_block_count: u32§encrypted_size: u32§plaintext_size: u32§first_frame_index: u64§frame_count: u32Implementations§
Trait Implementations§
Source§impl Clone for EnvelopeEntry
impl Clone for EnvelopeEntry
Source§fn clone(&self) -> EnvelopeEntry
fn clone(&self) -> EnvelopeEntry
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 moreSource§impl Debug for EnvelopeEntry
impl Debug for EnvelopeEntry
Source§impl PartialEq for EnvelopeEntry
impl PartialEq for EnvelopeEntry
Source§fn eq(&self, other: &EnvelopeEntry) -> bool
fn eq(&self, other: &EnvelopeEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for EnvelopeEntry
impl StructuralPartialEq for EnvelopeEntry
Auto Trait Implementations§
impl Freeze for EnvelopeEntry
impl RefUnwindSafe for EnvelopeEntry
impl Send for EnvelopeEntry
impl Sync for EnvelopeEntry
impl Unpin for EnvelopeEntry
impl UnsafeUnpin for EnvelopeEntry
impl UnwindSafe for EnvelopeEntry
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