pub struct SyncOptions {
pub language_filter: Option<String>,
pub match_language: Option<String>,
pub fail_on_unmatched: bool,
pub fail_on_ambiguous: bool,
pub record_provenance: bool,
}Expand description
Options controlling sync behavior.
Fields§
§language_filter: Option<String>§match_language: Option<String>§fail_on_unmatched: bool§fail_on_ambiguous: bool§record_provenance: boolTrait Implementations§
Source§impl Clone for SyncOptions
impl Clone for SyncOptions
Source§fn clone(&self) -> SyncOptions
fn clone(&self) -> SyncOptions
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 moreSource§impl Debug for SyncOptions
impl Debug for SyncOptions
Source§impl Default for SyncOptions
impl Default for SyncOptions
Source§fn default() -> SyncOptions
fn default() -> SyncOptions
Returns the “default value” for a type. Read more
Source§impl PartialEq for SyncOptions
impl PartialEq for SyncOptions
impl Eq for SyncOptions
impl StructuralPartialEq for SyncOptions
Auto Trait Implementations§
impl Freeze for SyncOptions
impl RefUnwindSafe for SyncOptions
impl Send for SyncOptions
impl Sync for SyncOptions
impl Unpin for SyncOptions
impl UnwindSafe for SyncOptions
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