[][src]Trait auth0_management::Auth0Request

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

Request

Required methods

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

Send request

Loading content...

Implementors

impl<A: Auth0RequestBuilder + AsRef<Auth0Client> + Sync + Send> Auth0Request for A[src]

Loading content...