pub struct LocalPersistOptions {
pub overwrite: bool,
}Expand description
Options controlling temporary file persistence behavior.
The default is conservative: existing destination paths are not overwritten.
Fields§
§overwrite: boolWhether an existing target path may be overwritten.
Trait Implementations§
Source§impl Clone for LocalPersistOptions
impl Clone for LocalPersistOptions
Source§fn clone(&self) -> LocalPersistOptions
fn clone(&self) -> LocalPersistOptions
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 moreSource§impl Debug for LocalPersistOptions
impl Debug for LocalPersistOptions
Source§impl Default for LocalPersistOptions
impl Default for LocalPersistOptions
Source§impl PartialEq for LocalPersistOptions
impl PartialEq for LocalPersistOptions
Source§fn eq(&self, other: &LocalPersistOptions) -> bool
fn eq(&self, other: &LocalPersistOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for LocalPersistOptions
impl Eq for LocalPersistOptions
impl StructuralPartialEq for LocalPersistOptions
Auto Trait Implementations§
impl Freeze for LocalPersistOptions
impl RefUnwindSafe for LocalPersistOptions
impl Send for LocalPersistOptions
impl Sync for LocalPersistOptions
impl Unpin for LocalPersistOptions
impl UnsafeUnpin for LocalPersistOptions
impl UnwindSafe for LocalPersistOptions
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