Struct chirpstack_api::as_pb::external::api::organization_service_server::OrganizationServiceServer [−][src]
pub struct OrganizationServiceServer<T: OrganizationService> { /* fields omitted */ }
Expand description
OrganizationService is the service managing the organization access.
Implementations
Trait Implementations
Auto Trait Implementations
impl<T> !RefUnwindSafe for OrganizationServiceServer<T>impl<T> Send for OrganizationServiceServer<T>impl<T> Sync for OrganizationServiceServer<T>impl<T> Unpin for OrganizationServiceServer<T>impl<T> !UnwindSafe for OrganizationServiceServer<T>Blanket Implementations
Mutably borrows from an owned value. Read more
impl<T, ReqBody, ResBody> GrpcService<ReqBody> for T where
T: Service<Request<ReqBody>, Response = Response<ResBody>>,
ResBody: Body + Body,
<T as Service<Request<ReqBody>>>::Error: Into<Box<dyn Error + 'static + Sync + Send, Global>>,
<ResBody as Body>::Error: Into<Box<dyn Error + 'static + Sync + Send, Global>>, [src]
impl<T, ReqBody, ResBody> GrpcService<ReqBody> for T where
T: Service<Request<ReqBody>, Response = Response<ResBody>>,
ResBody: Body + Body,
<T as Service<Request<ReqBody>>>::Error: Into<Box<dyn Error + 'static + Sync + Send, Global>>,
<ResBody as Body>::Error: Into<Box<dyn Error + 'static + Sync + Send, Global>>, [src]type ResponseBody = ResBody
type ResponseBody = ResBodyResponses body given by the service.
pub fn poll_ready(
&mut self,
cx: &mut Context<'_>
) -> Poll<Result<(), <T as GrpcService<ReqBody>>::Error>>[src]
pub fn poll_ready(
&mut self,
cx: &mut Context<'_>
) -> Poll<Result<(), <T as GrpcService<ReqBody>>::Error>>[src]Returns Ready when the service is able to process requests. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
Wrap the input message T in a tonic::Request
Yields a mutable reference to the service when it is ready to accept a request.
please use the ServiceExt::ready method instead
Yields a mutable reference to the service when it is ready to accept a request.
Yields the service when it is ready to accept a request.
Consume this Service, calling with the providing request once it is ready.
Executes a new future after this service’s future resolves. This does
not alter the behaviour of the poll_ready method. Read more
fn map_response<F, Response>(self, f: F) -> MapResponse<Self, F> where
F: FnOnce(Self::Response) -> Response + Clone, [src]
fn map_response<F, Response>(self, f: F) -> MapResponse<Self, F> where
F: FnOnce(Self::Response) -> Response + Clone, [src]Maps this service’s response value to a different value. This does not
alter the behaviour of the poll_ready method. Read more
Maps this service’s error value to a different value. This does not
alter the behaviour of the poll_ready method. Read more
Maps this service’s result type (Result<Self::Response, Self::Error>)
to a different value, regardless of whether the future succeeds or
fails. Read more
fn map_request<F, NewRequest>(self, f: F) -> MapRequest<Self, F> where
F: FnMut(NewRequest) -> Request + Clone, [src]
fn map_request<F, NewRequest>(self, f: F) -> MapRequest<Self, F> where
F: FnMut(NewRequest) -> Request + Clone, [src]Composes a function in front of the service. Read more
Composes an asynchronous function after this service. Read more
pub fn vzip(self) -> VAttaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more