pub struct WriterOptions {
pub title: String,
pub page_size: u32,
pub codec: Codec,
pub codec_selection: CodecSelection,
pub zstd_level: i32,
pub encoding: Encoding,
pub encoding_selection: EncodingSelection,
pub string_table: Vec<String>,
pub compress_partial_page: bool,
pub page_packing: PagePacking,
}Fields§
§title: String§page_size: u32§codec: Codec§codec_selection: CodecSelection§zstd_level: i32§encoding: Encoding§encoding_selection: EncodingSelection§string_table: Vec<String>§compress_partial_page: bool§page_packing: PagePackingImplementations§
Trait Implementations§
Source§impl Clone for WriterOptions
impl Clone for WriterOptions
Source§fn clone(&self) -> WriterOptions
fn clone(&self) -> WriterOptions
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 moreAuto Trait Implementations§
impl Freeze for WriterOptions
impl RefUnwindSafe for WriterOptions
impl Send for WriterOptions
impl Sync for WriterOptions
impl Unpin for WriterOptions
impl UnsafeUnpin for WriterOptions
impl UnwindSafe for WriterOptions
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