[][src]Struct recur_fn::FromPointer

pub struct FromPointer<D>(_);

A RecurFn that delegates to a pointer to a RecurFn.

Trait Implementations

impl<Arg, Output, D> RecurFn<Arg, Output> for FromPointer<D> where
    D: Deref,
    D::Target: RecurFn<Arg, Output>, 
[src]

fn call(&self, arg: Arg) -> Output[src]

Calls the recursive function.

Auto Trait Implementations

impl<D> Unpin for FromPointer<D> where
    D: Unpin

impl<D> Sync for FromPointer<D> where
    D: Sync

impl<D> Send for FromPointer<D> where
    D: Send

Blanket Implementations

impl<Arg, Output, R> DynRecurFn<Arg, Output> for R where
    R: RecurFn<Arg, Output>, 
[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> Into<U> for T where
    U: From<T>, 
[src]

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

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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