struct user_by_username;
Trait Implementations§
Source§impl<__internal_AppCtx> Handler<__internal_AppCtx> for user_by_username
impl<__internal_AppCtx> Handler<__internal_AppCtx> for user_by_username
Source§fn register(
rpc_builder: RpcBuilder<__internal_AppCtx>,
) -> RpcBuilder<__internal_AppCtx>
fn register( rpc_builder: RpcBuilder<__internal_AppCtx>, ) -> RpcBuilder<__internal_AppCtx>
Register this handler against the provided RPC builder.
fn export_all_dependencies_to( out_dir: &Path, ) -> Result<Vec<Dependency>, ExportError>
Source§fn qubit_types() -> Vec<QubitType>
fn qubit_types() -> Vec<QubitType>
Provide a list of Qubit types that this handler relies on.
Auto Trait Implementations§
impl Freeze for user_by_username
impl RefUnwindSafe for user_by_username
impl Send for user_by_username
impl Sync for user_by_username
impl Unpin for user_by_username
impl UnwindSafe for user_by_username
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
§impl<Ctx> FromRequestExtensions<Ctx> for Ctxwhere
Ctx: Send,
impl<Ctx> FromRequestExtensions<Ctx> for Ctxwhere
Ctx: Send,
§async fn from_request_extensions(
ctx: Ctx,
_extensions: Extensions,
) -> Result<Ctx, RpcError>
async fn from_request_extensions( ctx: Ctx, _extensions: Extensions, ) -> Result<Ctx, RpcError>
Using the provided context and extensions, build a new extension.
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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 more