pub struct ClawDbServiceImpl { /* private fields */ }Implementations§
Trait Implementations§
Source§impl ClawDbService for ClawDbServiceImpl
impl ClawDbService for ClawDbServiceImpl
fn health<'life0, 'async_trait>(
&'life0 self,
request: Request<HealthRequest>,
) -> Pin<Box<dyn Future<Output = Result<Response<HealthResponse>, Status>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn create_session<'life0, 'async_trait>(
&'life0 self,
request: Request<CreateSessionRequest>,
) -> Pin<Box<dyn Future<Output = Result<Response<CreateSessionResponse>, Status>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn validate_session<'life0, 'async_trait>(
&'life0 self,
request: Request<ValidateSessionRequest>,
) -> Pin<Box<dyn Future<Output = Result<Response<ValidateSessionResponse>, Status>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn revoke_session<'life0, 'async_trait>(
&'life0 self,
request: Request<RevokeSessionRequest>,
) -> Pin<Box<dyn Future<Output = Result<Response<RevokeSessionResponse>, Status>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn remember<'life0, 'async_trait>(
&'life0 self,
request: Request<RememberRequest>,
) -> Pin<Box<dyn Future<Output = Result<Response<RememberResponse>, Status>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn remember_typed<'life0, 'async_trait>(
&'life0 self,
request: Request<RememberTypedRequest>,
) -> Pin<Box<dyn Future<Output = Result<Response<RememberResponse>, Status>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn search<'life0, 'async_trait>(
&'life0 self,
request: Request<SearchRequest>,
) -> Pin<Box<dyn Future<Output = Result<Response<SearchResponse>, Status>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn recall<'life0, 'async_trait>(
&'life0 self,
request: Request<RecallRequest>,
) -> Pin<Box<dyn Future<Output = Result<Response<RecallResponse>, Status>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn branch<'life0, 'async_trait>(
&'life0 self,
request: Request<BranchRequest>,
) -> Pin<Box<dyn Future<Output = Result<Response<BranchResponse>, Status>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn merge<'life0, 'async_trait>(
&'life0 self,
request: Request<MergeRequest>,
) -> Pin<Box<dyn Future<Output = Result<Response<MergeResponse>, Status>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn diff<'life0, 'async_trait>(
&'life0 self,
request: Request<DiffRequest>,
) -> Pin<Box<dyn Future<Output = Result<Response<DiffResponse>, Status>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn sync<'life0, 'async_trait>(
&'life0 self,
request: Request<SyncRequest>,
) -> Pin<Box<dyn Future<Output = Result<Response<SyncResponse>, Status>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn reflect<'life0, 'async_trait>(
&'life0 self,
request: Request<ReflectRequest>,
) -> Pin<Box<dyn Future<Output = Result<Response<ReflectResponse>, Status>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn begin_tx<'life0, 'async_trait>(
&'life0 self,
request: Request<BeginTxRequest>,
) -> Pin<Box<dyn Future<Output = Result<Response<BeginTxResponse>, Status>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn commit_tx<'life0, 'async_trait>(
&'life0 self,
request: Request<CommitTxRequest>,
) -> Pin<Box<dyn Future<Output = Result<Response<CommitTxResponse>, Status>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn rollback_tx<'life0, 'async_trait>(
&'life0 self,
request: Request<RollbackTxRequest>,
) -> Pin<Box<dyn Future<Output = Result<Response<RollbackTxResponse>, Status>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Auto Trait Implementations§
impl Freeze for ClawDbServiceImpl
impl !RefUnwindSafe for ClawDbServiceImpl
impl Send for ClawDbServiceImpl
impl Sync for ClawDbServiceImpl
impl Unpin for ClawDbServiceImpl
impl UnsafeUnpin for ClawDbServiceImpl
impl !UnwindSafe for ClawDbServiceImpl
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::RequestSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request