[][src]Struct oxide_auth_actix::OAuthMessage

pub struct OAuthMessage<Operation, Extras>(_, _);

A message type to easily send OAuthOperations to an actor

Implementations

impl<Operation, Extras> OAuthMessage<Operation, Extras>[src]

pub fn into_inner(self) -> (Operation, Extras)[src]

Produce an OAuthOperation from a wrapping OAuthMessage

Trait Implementations

impl<Operation, Extras> Message for OAuthMessage<Operation, Extras> where
    Operation: OAuthOperation + 'static, 
[src]

type Result = Result<Operation::Item, Operation::Error>

The type of value that this message will resolved with if it is successful. Read more

Auto Trait Implementations

impl<Operation, Extras> RefUnwindSafe for OAuthMessage<Operation, Extras> where
    Extras: RefUnwindSafe,
    Operation: RefUnwindSafe

impl<Operation, Extras> Send for OAuthMessage<Operation, Extras> where
    Extras: Send,
    Operation: Send

impl<Operation, Extras> Sync for OAuthMessage<Operation, Extras> where
    Extras: Sync,
    Operation: Sync

impl<Operation, Extras> Unpin for OAuthMessage<Operation, Extras> where
    Extras: Unpin,
    Operation: Unpin

impl<Operation, Extras> UnwindSafe for OAuthMessage<Operation, Extras> where
    Extras: UnwindSafe,
    Operation: UnwindSafe

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

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,