Struct rental::RentalError[][src]

pub struct RentalError<E, H>(pub E, pub H);

An error wrapper returned by the try_new method of a rental struct.

This will contain the first error returned by the closure chain, as well as the original head value you passed in so you can do something else with it.

Auto Trait Implementations

impl<E, H> Send for RentalError<E, H> where
    E: Send,
    H: Send

impl<E, H> Sync for RentalError<E, H> where
    E: Sync,
    H: Sync