pub struct SyncOptions {
pub recursive: bool,
pub content: bool,
pub cross_filesystem: bool,
pub latency: Duration,
pub inline_max: u64,
pub window_bytes: usize,
pub batch_target: usize,
pub max_entries: usize,
}Fields§
§recursive: bool§content: bool§cross_filesystem: bool§latency: DurationSettle/batching window.
inline_max: u64Per-file inline content cap in bytes.
window_bytes: usizeUnacknowledged-byte credit window.
batch_target: usizeUncompressed records target per update.
max_entries: usizeHard cap on indexed entries.
Trait 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 (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 SyncOptions
impl Debug 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 UnsafeUnpin 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