pub struct EncodingEntry {
pub content_key: Vec<u8>,
pub encoding_keys: Vec<Vec<u8>>,
pub size: u64,
}
Expand description
Encoding entry for a content key
Fields§
§content_key: Vec<u8>
The content key
encoding_keys: Vec<Vec<u8>>
List of encoding keys for this content
size: u64
File size (40-bit integer)
Trait Implementations§
Source§impl Clone for EncodingEntry
impl Clone for EncodingEntry
Source§fn clone(&self) -> EncodingEntry
fn clone(&self) -> EncodingEntry
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for EncodingEntry
impl RefUnwindSafe for EncodingEntry
impl Send for EncodingEntry
impl Sync for EncodingEntry
impl Unpin for EncodingEntry
impl UnwindSafe for EncodingEntry
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