Type Alias RemoveError

Source
pub type RemoveError = RemoveError<Error>;
Available on crate feature std only.
Expand description

RemoveError returned by sync::Pkg.

Aliased Type§

enum RemoveError {
    NotFound,
    Io(Error),
}

Variants§

§

NotFound

The target entry was not found.

§

Io(Error)

An IO error occurred.