Syncable

Trait Syncable 

Source
pub trait Syncable {
    // Required methods
    fn new(path: &str) -> Self;
    fn load(&self, progress: Option<&ProgressBar>) -> SyncData;
}

Required Methods§

Source

fn new(path: &str) -> Self

Source

fn load(&self, progress: Option<&ProgressBar>) -> SyncData

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§