Struct lzma_sys::lzma_options_lzma
source · [−]#[repr(C)]pub struct lzma_options_lzma {
pub dict_size: u32,
pub preset_dict: *const u8,
pub preset_dict_size: u32,
pub lc: u32,
pub lp: u32,
pub pb: u32,
pub mode: lzma_mode,
pub nice_len: u32,
pub mf: lzma_match_finder,
pub depth: u32,
/* private fields */
}
Fields
dict_size: u32
preset_dict: *const u8
preset_dict_size: u32
lc: u32
lp: u32
pb: u32
mode: lzma_mode
nice_len: u32
mf: lzma_match_finder
depth: u32
Trait Implementations
sourceimpl Clone for lzma_options_lzma
impl Clone for lzma_options_lzma
sourcefn clone(&self) -> lzma_options_lzma
fn clone(&self) -> lzma_options_lzma
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Copy for lzma_options_lzma
Auto Trait Implementations
impl RefUnwindSafe for lzma_options_lzma
impl !Send for lzma_options_lzma
impl !Sync for lzma_options_lzma
impl Unpin for lzma_options_lzma
impl UnwindSafe for lzma_options_lzma
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more