[][src]Struct valor_core::Handler

pub struct Handler<L> { /* fields omitted */ }

Handler is the main entry point for dispatching incoming requests to registered plugins under a specific URL pattern.

let handler = Handler::new();
let request = Request::new();
let res = handler.handle_request(request).await?;
assert_eq(res, StatusCode::Ok);

Implementations

impl<L: Loader + 'static> Handler<L>[src]

pub fn new(loader: L) -> Self[src]

Creates a new Handler instance

pub fn with_plugin<H>(&self, plugin: impl Into<Plugin>, handler: H) where
    H: RequestHandler + 'static, 
[src]

pub async fn load_plugin(&self, plugin: Plugin) -> Result<(), LoadError>[src]

pub fn with_registry(self) -> Self[src]

pub fn with_health(self) -> Self[src]

pub async fn handle_request(
    &self,
    request: impl Into<Request>
) -> Result<Response, Response>
[src]

Handle the incoming request and send back a response from the matched plugin to the caller.

Trait Implementations

impl<L> Clone for Handler<L>[src]

Auto Trait Implementations

impl<L> !RefUnwindSafe for Handler<L>[src]

impl<L> !Send for Handler<L>[src]

impl<L> !Sync for Handler<L>[src]

impl<L> Unpin for Handler<L>[src]

impl<L> !UnwindSafe for Handler<L>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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