[][src]Enum rustable::ResolveError

pub enum ResolveError<T: 'static, U: 'static> {
    StillPending(Pending<T, U>),
    Error(Pending<T, U>, Error),
}

Returned by Bluetooth::try_resolve() to distinguish between Errors, and results that didn't finish.

Variants

StillPending(Pending<T, U>)
Error(Pending<T, U>, Error)

Auto Trait Implementations

impl<T, U> !RefUnwindSafe for ResolveError<T, U>[src]

impl<T, U> !Send for ResolveError<T, U>[src]

impl<T, U> !Sync for ResolveError<T, U>[src]

impl<T, U> Unpin for ResolveError<T, U> where
    T: Unpin,
    U: Unpin
[src]

impl<T, U> !UnwindSafe for ResolveError<T, U>[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> 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.