Enum game_kernel_utils::hierarchy::utils::RecursiveOpError[][src]

pub enum RecursiveOpError<E> {
    NotFound(),
    OpError(E),
}

Variants

NotFound()
OpError(E)

Implementations

impl<E> RecursiveOpError<E>[src]

pub fn map_to_op(self, mapper: fn(_: Self) -> E) -> E[src]

Auto Trait Implementations

impl<E> RefUnwindSafe for RecursiveOpError<E> where
    E: RefUnwindSafe
[src]

impl<E> Send for RecursiveOpError<E> where
    E: Send
[src]

impl<E> Sync for RecursiveOpError<E> where
    E: Sync
[src]

impl<E> Unpin for RecursiveOpError<E> where
    E: Unpin
[src]

impl<E> UnwindSafe for RecursiveOpError<E> where
    E: UnwindSafe
[src]

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> Erased for T

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.