pub struct SaveOptions {
pub deflate: bool,
pub retain_orphans: bool,
}
Expand description
Options to pass to Automerge::save_with_options()
and crate::AutoCommit::save_with_options()
Fields§
§deflate: bool
Whether to apply DEFLATE compression to the RLE encoded columns in the document
retain_orphans: bool
Whether to save changes which we do not have the dependencies for
Trait Implementations§
Source§impl Debug for SaveOptions
impl Debug for SaveOptions
Auto Trait Implementations§
impl Freeze for SaveOptions
impl RefUnwindSafe for SaveOptions
impl Send for SaveOptions
impl Sync for SaveOptions
impl Unpin for SaveOptions
impl UnwindSafe for SaveOptions
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