pub struct SyncConfig {
pub db_path: PathBuf,
pub passphrase: Vec<u8>,
pub tracked_files: Vec<TrackedFile>,
}Expand description
Configuration for the sync engine.
Fields§
§db_path: PathBufPath to the local SQLite sync state database.
passphrase: Vec<u8>Passphrase for encryption/decryption.
tracked_files: Vec<TrackedFile>Files to track.
Auto Trait Implementations§
impl Freeze for SyncConfig
impl RefUnwindSafe for SyncConfig
impl Send for SyncConfig
impl Sync for SyncConfig
impl Unpin for SyncConfig
impl UnsafeUnpin for SyncConfig
impl UnwindSafe for SyncConfig
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