[][src]Trait nebula_graph_fbthrift_graph::server::GraphService

pub trait GraphService: Send + Sync + 'static {
#[must_use]    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] 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] 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]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]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]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, 

Loading content...

Implementors

Loading content...