[][src]Struct cargo::util::errors::ManifestError

pub struct ManifestError { /* fields omitted */ }

Error wrapper related to a particular manifest and providing it's path.

This error adds no displayable info of it's own.

Implementations

impl ManifestError[src]

pub fn new<E: Into<Error>>(cause: E, manifest: PathBuf) -> Self[src]

pub fn manifest_path(&self) -> &PathBuf[src]

pub fn manifest_causes(&self) -> ManifestCauses<'_>

Notable traits for ManifestCauses<'a>

impl<'a> Iterator for ManifestCauses<'a> type Item = &'a ManifestError;
[src]

Returns an iterator over the ManifestError chain of causes.

So if this error was not caused by another ManifestError this will be empty.

Trait Implementations

impl Debug for ManifestError[src]

impl Display for ManifestError[src]

impl Error for ManifestError[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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<V, T> VZip<V> for T where
    V: MultiLane<T>,