[][src]Enum augr_core::store::sync_folder_store::SyncFolderStoreError

pub enum SyncFolderStoreError {
    DeserializeMeta {
        source: Error,
        device_id: String,
    },
    SerializeMeta {
        source: Error,
        device_id: String,
    },
    DeserializePatch {
        source: Error,
        patch_ref: String,
    },
    ReadFile {
        source: Error,
        path: PathBuf,
    },
    WriteFile {
        source: Error,
        path: PathBuf,
    },
    IOError {
        source: Error,
    },
}

Variants

DeserializeMeta

Fields of DeserializeMeta

source: Errordevice_id: String
SerializeMeta

Fields of SerializeMeta

source: Errordevice_id: String
DeserializePatch

Fields of DeserializePatch

source: Errorpatch_ref: String
ReadFile

Fields of ReadFile

source: Errorpath: PathBuf
WriteFile

Fields of WriteFile

source: Errorpath: PathBuf
IOError

Fields of IOError

source: Error

Trait Implementations

impl Display for SyncFolderStoreError[src]

impl Debug for SyncFolderStoreError[src]

impl Error for SyncFolderStoreError where
    Self: Debug + Display
[src]

impl ErrorCompat for SyncFolderStoreError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> AsErrorSource for T where
    T: 'static + Error
[src]