[][src]Trait auth0_management::Auth0RequestSimple

pub trait Auth0RequestSimple {
#[must_use]    fn send_to<'life0, 'life1, 'async_trait, T>(
        &'life0 self,
        client: &'life1 Auth0Client
    ) -> Pin<Box<dyn Future<Output = Auth0Result<T>> + Send + 'async_trait>>
    where
        T: DeserializeOwned + Send + Sync,
        T: 'async_trait,
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
; }

Simple request

Required methods

#[must_use]fn send_to<'life0, 'life1, 'async_trait, T>(
    &'life0 self,
    client: &'life1 Auth0Client
) -> Pin<Box<dyn Future<Output = Auth0Result<T>> + Send + 'async_trait>> where
    T: DeserializeOwned + Send + Sync,
    T: 'async_trait,
    'life0: 'async_trait,
    'life1: 'async_trait,
    Self: 'async_trait, 

Send request to client

Loading content...

Implementors

impl<A: Auth0RequestBuilder + Send + Sync> Auth0RequestSimple for A[src]

Loading content...