pub struct GraphServiceImpl<P, T> { /* private fields */ }
Implementations§
Trait Implementations§
Source§impl<P, T> GraphService for GraphServiceImpl<P, T>where
P: Protocol,
T: Transport,
P::Frame: Framing<DecBuf = FramingDecoded<T>>,
ProtocolEncoded<P>: BufMutExt<Final = FramingEncodedFinal<T>>,
impl<P, T> GraphService for GraphServiceImpl<P, T>where
P: Protocol,
T: Transport,
P::Frame: Framing<DecBuf = FramingDecoded<T>>,
ProtocolEncoded<P>: BufMutExt<Final = FramingEncodedFinal<T>>,
fn authenticate( &self, arg_username: &Vec<u8>, arg_password: &Vec<u8>, ) -> Pin<Box<dyn Future<Output = Result<AuthResponse, AuthenticateError>> + Send + 'static>>
fn signout( &self, arg_sessionId: i64, ) -> Pin<Box<dyn Future<Output = Result<(), SignoutError>> + Send + 'static>>
fn execute( &self, arg_sessionId: i64, arg_stmt: &Vec<u8>, ) -> Pin<Box<dyn Future<Output = Result<ExecutionResponse, ExecuteError>> + Send + 'static>>
fn executeJson( &self, arg_sessionId: i64, arg_stmt: &Vec<u8>, ) -> Pin<Box<dyn Future<Output = Result<Vec<u8>, ExecuteJsonError>> + Send + 'static>>
Auto Trait Implementations§
impl<P, T> Freeze for GraphServiceImpl<P, T>where
T: Freeze,
impl<P, T> RefUnwindSafe for GraphServiceImpl<P, T>where
T: RefUnwindSafe,
impl<P, T> Send for GraphServiceImpl<P, T>where
T: Send,
impl<P, T> Sync for GraphServiceImpl<P, T>where
T: Sync,
impl<P, T> Unpin for GraphServiceImpl<P, T>where
T: Unpin,
impl<P, T> UnwindSafe for GraphServiceImpl<P, T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more