[][src]Trait nebula_fbthrift_graph::server::GraphService

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

Provided methods

#[must_use]pub fn authenticate<'life0, 'async_trait>(
    &'life0 self,
    _username: String,
    _password: String
) -> Pin<Box<dyn Future<Output = Result<AuthResponse, AuthenticateExn>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: Sync + 'async_trait, 
[src]

#[must_use]pub fn signout<'life0, 'async_trait>(
    &'life0 self,
    _sessionId: i64
) -> Pin<Box<dyn Future<Output = Result<(), SignoutExn>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: Sync + 'async_trait, 
[src]

#[must_use]pub fn execute<'life0, 'async_trait>(
    &'life0 self,
    _sessionId: i64,
    _stmt: String
) -> Pin<Box<dyn Future<Output = Result<ExecutionResponse, ExecuteExn>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: Sync + 'async_trait, 
[src]

Loading content...

Implementors

Loading content...