pub struct CodeTableData {
pub size_of_near_cache: u8,
pub size_of_same_cache: u8,
pub compressed_code_table_data: Vec<u8>,
}
Expand description
Encapsulates the code table data found in the VCDIFF patch header.
Fields§
§size_of_near_cache: u8
§size_of_same_cache: u8
§compressed_code_table_data: Vec<u8>
Trait Implementations§
Source§impl Clone for CodeTableData
impl Clone for CodeTableData
Source§fn clone(&self) -> CodeTableData
fn clone(&self) -> CodeTableData
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 moreSource§impl Debug for CodeTableData
impl Debug for CodeTableData
Source§impl Default for CodeTableData
impl Default for CodeTableData
Source§fn default() -> CodeTableData
fn default() -> CodeTableData
Returns the “default value” for a type. Read more
Source§impl PartialEq for CodeTableData
impl PartialEq for CodeTableData
impl Eq for CodeTableData
impl StructuralPartialEq for CodeTableData
Auto Trait Implementations§
impl Freeze for CodeTableData
impl RefUnwindSafe for CodeTableData
impl Send for CodeTableData
impl Sync for CodeTableData
impl Unpin for CodeTableData
impl UnwindSafe for CodeTableData
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