Enum ubiquity::error::SyncError [] [src]

pub enum SyncError {
    PathModified(PathBuf),
    IoError(ErrorOption<String>),
    RootDoesntExist(PathBuf),
    AbsolutePathProvided(PathBuf),
    ArchiveReadError(ReadError),
    ArchiveWriteError(WriteError),
    Cancelled,
    WalkDirError(WalkDirError),
    RsyncNotFound(String),
}

The many causes for an error during the synchronization process

Variants

The requested operation was cancelled before it could be completed.

The rsync executable wasn't found

Trait Implementations

impl Debug for SyncError
[src]

Formats the value using the given formatter.

impl From<Error> for SyncError
[src]

Performs the conversion.

impl From<(Error, String)> for SyncError
[src]

Performs the conversion.

impl From<ReadError> for SyncError
[src]

Performs the conversion.

impl From<WriteError> for SyncError
[src]

Performs the conversion.

impl From<WalkDirError> for SyncError
[src]

Performs the conversion.

impl Display for SyncError
[src]

Formats the value using the given formatter.