pub trait GraphService: Send + Sync + 'static {
    fn authenticate<'life0, 'async_trait>(
        &'life0 self,
        _username: String,
        _password: String
    ) -> Pin<Box<dyn Future<Output = Result<AuthResponse, AuthenticateExn>> + Send + 'async_trait>>
    where
        Self: 'async_trait,
        'life0: 'async_trait
, { ... } fn signout<'life0, 'async_trait>(
        &'life0 self,
        _sessionId: i64
    ) -> Pin<Box<dyn Future<Output = Result<(), SignoutExn>> + Send + 'async_trait>>
    where
        Self: 'async_trait,
        'life0: 'async_trait
, { ... } fn execute<'life0, 'async_trait>(
        &'life0 self,
        _sessionId: i64,
        _stmt: String
    ) -> Pin<Box<dyn Future<Output = Result<ExecutionResponse, ExecuteExn>> + Send + 'async_trait>>
    where
        Self: 'async_trait,
        'life0: 'async_trait
, { ... } }

Provided Methods§

Implementations on Foreign Types§

Implementors§