Skip to main content

MiddlewareChain

Struct MiddlewareChain 

Source
pub struct MiddlewareChain<First, Second>(pub First, pub Second);
Expand description

Two factories/handlers composed in builder declaration order.

Tuple Fields§

§0: First§1: Second

Trait Implementations§

Source§

impl<State, Context, First, Second> ClientMiddleware<State, Context> for MiddlewareChain<First, Second>
where First: ClientMiddleware<State, Context>, Second: ClientMiddleware<State, Context>,

Source§

fn pre_startup( &mut self, context: &Context, state: &mut State, message: PreStartupMessage, ) -> PreStartupMessage

Intercepts a client-originated pre-startup negotiation packet.
Source§

fn startup( &mut self, context: &Context, state: &mut State, message: StartupMessage, ) -> StartupMessage

Intercepts the owned startup message before it is sent.
Source§

fn frontend( &mut self, context: &Context, state: &mut State, message: FrontendMessage, ) -> FrontendMessage

Intercepts one message sent by the client.
Source§

fn backend( &mut self, context: &Context, state: &mut State, message: BackendMessage, ) -> BackendMessage

Intercepts one message received from the server.
Source§

impl<First: Clone, Second: Clone> Clone for MiddlewareChain<First, Second>

Source§

fn clone(&self) -> MiddlewareChain<First, Second>

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<First: Debug, Second: Debug> Debug for MiddlewareChain<First, Second>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<First: Eq, Second: Eq> Eq for MiddlewareChain<First, Second>

Source§

impl<Context, First, Second> MiddlewareFactory<Context> for MiddlewareChain<First, Second>
where First: MiddlewareFactory<Context>, Second: MiddlewareFactory<Context>,

Source§

type Handler = MiddlewareChain<<First as MiddlewareFactory<Context>>::Handler, <Second as MiddlewareFactory<Context>>::Handler>

Handler owned by that connection.
Source§

fn create(&self, context: &Context) -> Self::Handler

Creates the handler. Factories are deliberately infallible.
Source§

impl<First: PartialEq, Second: PartialEq> PartialEq for MiddlewareChain<First, Second>

Source§

fn eq(&self, other: &MiddlewareChain<First, Second>) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl<State, Context, First, Second> ServerMiddleware<State, Context> for MiddlewareChain<First, Second>
where First: ServerMiddleware<State, Context>, Second: ServerMiddleware<State, Context>,

Source§

fn pre_startup( &mut self, context: &Context, state: &mut State, message: PreStartupMessage, ) -> PreStartupMessage

Intercepts one pre-startup packet before protocol dispatch.
Source§

fn startup( &mut self, context: &Context, state: &mut State, message: StartupMessage, ) -> StartupMessage

Intercepts the owned startup message before authentication.
Source§

fn cancellation( &mut self, context: &Context, state: &mut State, request: CancellationRequest, ) -> CancellationRequest

Intercepts an out-of-band cancellation request before it is returned.
Source§

fn frontend( &mut self, context: &Context, state: &mut State, message: FrontendMessage, ) -> FrontendMessage

Intercepts one message received from the client.
Source§

fn backend( &mut self, context: &Context, state: &mut State, message: BackendMessage, ) -> BackendMessage

Intercepts one message sent by the server.
Source§

impl<First: PartialEq, Second: PartialEq> StructuralPartialEq for MiddlewareChain<First, Second>

Auto Trait Implementations§

§

impl<First, Second> Freeze for MiddlewareChain<First, Second>
where First: Freeze, Second: Freeze,

§

impl<First, Second> RefUnwindSafe for MiddlewareChain<First, Second>
where First: RefUnwindSafe, Second: RefUnwindSafe,

§

impl<First, Second> Send for MiddlewareChain<First, Second>
where First: Send, Second: Send,

§

impl<First, Second> Sync for MiddlewareChain<First, Second>
where First: Sync, Second: Sync,

§

impl<First, Second> Unpin for MiddlewareChain<First, Second>
where First: Unpin, Second: Unpin,

§

impl<First, Second> UnsafeUnpin for MiddlewareChain<First, Second>
where First: UnsafeUnpin, Second: UnsafeUnpin,

§

impl<First, Second> UnwindSafe for MiddlewareChain<First, Second>
where First: UnwindSafe, Second: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<'a, T, E> AsTaggedExplicit<'a, E> for T
where T: 'a,

Source§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self, E>

Source§

impl<'a, T, E> AsTaggedImplicit<'a, E> for T
where T: 'a,

Source§

fn implicit( self, class: Class, constructed: bool, tag: u32, ) -> TaggedParser<'a, Implicit, Self, E>

Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.