Enum racer::RustSrcPathError[][src]

pub enum RustSrcPathError {
    Missing,
    DoesNotExist(PathBuf),
    NotRustSourceTree(PathBuf),
}

Error type returned from validate_rust_src_path()

Variants

Trait Implementations

impl Debug for RustSrcPathError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for RustSrcPathError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Error for RustSrcPathError
[src]

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

This method is soft-deprecated. Read more

impl Display for RustSrcPathError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations