Struct OptionsService
pub struct OptionsService<C> { /* private fields */ }Available on crate features
icap and std only.Expand description
Executes one OPTIONS exchange through an ICAP connector.
Implementations§
§impl<C> OptionsService<C>
impl<C> OptionsService<C>
pub fn new(client: C) -> OptionsService<C>
pub fn new(client: C) -> OptionsService<C>
Create a discovery service that performs one OPTIONS exchange per call.
Wrap this service in super::OptionsCacheLayer to reuse discovered
capabilities. The client is stored as supplied; callers that want
shared ownership can supply an Arc<C> themselves.
pub const fn with_max_body_bytes(
self,
max_body_bytes: usize,
) -> OptionsService<C>
pub const fn with_max_body_bytes( self, max_body_bytes: usize, ) -> OptionsService<C>
Set the maximum retained opaque OPTIONS body size.
pub fn set_max_body_bytes(
&mut self,
max_body_bytes: usize,
) -> &mut OptionsService<C>
pub fn set_max_body_bytes( &mut self, max_body_bytes: usize, ) -> &mut OptionsService<C>
Set the maximum retained opaque OPTIONS body size.
pub const fn with_validation(
self,
validation: OptionsValidation,
) -> OptionsService<C>
pub const fn with_validation( self, validation: OptionsValidation, ) -> OptionsService<C>
Set semantic capability validation.
pub fn set_validation(
&mut self,
validation: OptionsValidation,
) -> &mut OptionsService<C>
pub fn set_validation( &mut self, validation: OptionsValidation, ) -> &mut OptionsService<C>
Set semantic capability validation.
pub const fn max_body_bytes(&self) -> usize
pub const fn max_body_bytes(&self) -> usize
Return the maximum retained opaque OPTIONS body size.
pub const fn validation(&self) -> OptionsValidation
pub const fn validation(&self) -> OptionsValidation
Return semantic capability validation.
Trait Implementations§
§impl<C> Clone for OptionsService<C>where
C: Clone,
impl<C> Clone for OptionsService<C>where
C: Clone,
§fn clone(&self) -> OptionsService<C>
fn clone(&self) -> OptionsService<C>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl<C> Debug for OptionsService<C>where
C: Debug,
impl<C> Debug for OptionsService<C>where
C: Debug,
§impl<C, IO> Service<OptionsRequest> for OptionsService<C>where
C: ConnectorService<ConnectRequest, Connection = ClientConnection<IO>>,
IO: Io + Unpin + ExtensionsRef,
impl<C, IO> Service<OptionsRequest> for OptionsService<C>where
C: ConnectorService<ConnectRequest, Connection = ClientConnection<IO>>,
IO: Io + Unpin + ExtensionsRef,
§type Output = ServiceCapabilities
type Output = ServiceCapabilities
The type of the output returned by the service.
§async fn serve(
&self,
input: OptionsRequest,
) -> Result<<OptionsService<C> as Service<OptionsRequest>>::Output, <OptionsService<C> as Service<OptionsRequest>>::Error>
async fn serve( &self, input: OptionsRequest, ) -> Result<<OptionsService<C> as Service<OptionsRequest>>::Output, <OptionsService<C> as Service<OptionsRequest>>::Error>
Serve an output or an error for the given input
§fn boxed(self) -> BoxService<Input, Self::Output, Self::Error>
fn boxed(self) -> BoxService<Input, Self::Output, Self::Error>
Box this service to allow for dynamic dispatch.
Auto Trait Implementations§
impl<C> Freeze for OptionsService<C>where
C: Freeze,
impl<C> RefUnwindSafe for OptionsService<C>where
C: RefUnwindSafe,
impl<C> Send for OptionsService<C>where
C: Send,
impl<C> Sync for OptionsService<C>where
C: Sync,
impl<C> Unpin for OptionsService<C>where
C: Unpin,
impl<C> UnsafeUnpin for OptionsService<C>where
C: UnsafeUnpin,
impl<C> UnwindSafe for OptionsService<C>where
C: UnwindSafe,
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
§fn with_current_context(self) -> WithContext<Self> ⓘ
fn with_current_context(self) -> WithContext<Self> ⓘ
§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§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a rama_grpc::Request§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
§fn and<P, B, E>(self, other: P) -> And<T, P>
fn and<P, B, E>(self, other: P) -> And<T, P>
Create a new
Policy that returns Action::Follow only if self and other return
Action::Follow. Read more