FnLayer

Struct FnLayer 

Source
pub struct FnLayer<M> { /* private fields */ }
Expand description

A functional layer

This is an example of how to create a layer that adds a header to the response:

let layer = FnLayer::new_closure(move |req, inner| {
   async move {
       let mut resp = inner.call(req).await;
       resp.headers_mut().insert("server", HeaderValue::from_static("potato"));
       resp
   }
});

Or you can use a struct that implements FnLayerMethod:

struct MyPlugin;
impl FnLayerMethod for MyPlugin {
   async fn call(&self, req: SgRequest, inner: Inner) -> SgResponse {
      let mut resp = inner.call(req).await;
      resp.headers_mut().insert("server", HeaderValue::from_static("potato"));
      resp
   }
}
let layer = FnLayer::new(MyPlugin);

Implementations§

Source§

impl<M> FnLayer<M>

Source

pub const fn new(method: M) -> Self

Source§

impl<F, Fut> FnLayer<Closure<F, Fut>>
where F: Fn(Request<SgBody>, Inner) -> Fut + Send + Sync + Clone + 'static, Fut: Future<Output = Response<SgBody>> + Send + 'static,

Source

pub const fn new_closure(f: F) -> Self

Source§

impl<H, F, Fut> FnLayer<Handler<H, F, Fut>>
where Handler<H, F, Fut>: FnLayerMethod,

Source

pub const fn new_handler(h: H) -> Self

Trait Implementations§

Source§

impl<M: Clone> Clone for FnLayer<M>

Source§

fn clone(&self) -> FnLayer<M>

Returns a duplicate of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
Source§

impl<M: Debug> Debug for FnLayer<M>

Source§

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

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

impl<M, S> Layer<S> for FnLayer<M>
where M: FnLayerMethod + Clone, S: Service<Request<SgBody>, Error = Infallible, Response = Response<SgBody>> + Send + Sync + Clone + 'static, <S as Service<Request<SgBody>>>::Future: Future<Output = Result<Response<SgBody>, Infallible>> + 'static + Send,

Source§

type Service = FnService<M>

The wrapped service
Source§

fn layer(&self, inner: S) -> Self::Service

Wrap the given service with the middleware, returning a new service that has been decorated with the middleware.

Auto Trait Implementations§

§

impl<M> Freeze for FnLayer<M>
where M: Freeze,

§

impl<M> RefUnwindSafe for FnLayer<M>
where M: RefUnwindSafe,

§

impl<M> Send for FnLayer<M>
where M: Send,

§

impl<M> Sync for FnLayer<M>
where M: Sync,

§

impl<M> Unpin for FnLayer<M>
where M: Unpin,

§

impl<M> UnwindSafe for FnLayer<M>
where M: 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<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> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> 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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more