[][src]Enum cargo_sync_readme::TransformError

pub enum TransformError {
    CannotReadEntryPoint(PathBufError),
    CannotReadReadme(PathBufError),
    IntralinkError(IntraLinkError),
    MissingOrIllFormedMarkers,
}

Errors that might happen while transforming documentation.

Variants

CannotReadEntryPoint(PathBufError)

Cannot read the Rust entry-point file containing the inner documentation.

CannotReadReadme(PathBufError)

Cannot read the README file.

IntralinkError(IntraLinkError)

Intra-link error which occurred while transforming the readme documentation.

MissingOrIllFormedMarkers

Initial, start and/or end markers missing and/or ill-formatted.

Trait Implementations

impl Debug for TransformError[src]

impl Display for TransformError[src]

impl From<IntraLinkError> for TransformError[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> 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.