[][src]Enum hough_circle_transform_for_cme::error::HougseErr

pub enum HougseErr {
    ConfigError(ConfigError),
    ReadError(ReadError),
    TransformationError(TransformationError),
    WriteError(WriteError),
}

Variants

ConfigError(ConfigError)
ReadError(ReadError)
TransformationError(TransformationError)
WriteError(WriteError)

Trait Implementations

impl Debug for HougseErr[src]

impl Display for HougseErr[src]

impl From<ConfigError> for HougseErr[src]

impl From<ReadError> for HougseErr[src]

impl From<TransformationError> for HougseErr[src]

impl From<WriteError> for HougseErr[src]

impl PartialEq<HougseErr> for HougseErr[src]

impl StructuralPartialEq for HougseErr[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,