[][src]Struct spirit::bodies::InnerBody

pub struct InnerBody(_);

A workaround type for Box<dyn FnOnce() -> Result<(), Error>.

Since it is not possible to use the aforementioned type in any meaningful way in Rust yet, this works around the problem. The type has a run method which does the same thing.

This is passed as parameter to the closure passed to run_around, representing the body to be run inside.

Methods

impl InnerBody[src]

pub fn run(self) -> Result<(), Error>[src]

Run the body.

Auto Trait Implementations

impl Send for InnerBody

impl !Sync for InnerBody

Blanket Implementations

impl<T> IntoResult for T[src]

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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> Erased for T