Enum fs_utils::copy::Error []

pub enum Error {
    CreateDirectory(PathBufError),
    ObtainEntry(PathBufError),
    ReadDirectory(PathBufError),
    DestinationDirectoryExists(PathBuf),
    Copy(PathBufPathBufError),
}

Variants

CreateDirectory(PathBufError)ObtainEntry(PathBufError)ReadDirectory(PathBufError)DestinationDirectoryExists(PathBuf)Copy(PathBufPathBufError)

Trait Implementations

impl Debug for Error
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Display for Error

fn fmt(&self, fmt: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Error for Error

fn description(&self) -> &str

A short description of the error. Read more

fn cause(&self) -> Option<&Error>

The lower-level cause of this error, if any. Read more

impl<'a> From<Context<CreateDirectory<'a>, Error>> for Error

fn from(::quick_error::Context: Context<CreateDirectory<'a>, Error>) -> Error

Performs the conversion.

impl<'a> From<Context<ObtainEntryIn<'a>, Error>> for Error

fn from(::quick_error::Context: Context<ObtainEntryIn<'a>, Error>) -> Error

Performs the conversion.

impl<'a> From<Context<SourceDirectory<'a>, Error>> for Error

fn from(::quick_error::Context: Context<SourceDirectory<'a>, Error>) -> Error

Performs the conversion.

impl<'a> From<Context<(&'a PathBuf, &'a PathBuf)Error>> for Error

fn from(::quick_error::Context: Context<(&'a PathBuf, &'a PathBuf)Error>) -> Error

Performs the conversion.