pub struct WriteEntry {
pub name: String,
pub data: Vec<u8>,
pub compression_level: u8,
}Expand description
A pending write entry.
Fields§
§name: String§data: Vec<u8>§compression_level: u8Implementations§
Trait Implementations§
Source§impl Clone for WriteEntry
impl Clone for WriteEntry
Source§fn clone(&self) -> WriteEntry
fn clone(&self) -> WriteEntry
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 WriteEntry
impl RefUnwindSafe for WriteEntry
impl Send for WriteEntry
impl Sync for WriteEntry
impl Unpin for WriteEntry
impl UnsafeUnpin for WriteEntry
impl UnwindSafe for WriteEntry
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