Struct poem::Route

source ·
pub struct Route { /* private fields */ }
Expand description

Routing object

You can match the full path or wildcard path, and use the Path extractor to get the path parameters.

§Errors

§Example

use poem::{
    get, handler,
    http::{StatusCode, Uri},
    test::TestClient,
    web::Path,
    Endpoint, Request, Route,
};

#[handler]
async fn a() {}

#[handler]
async fn b(Path((group, name)): Path<(String, String)>) {
    assert_eq!(group, "foo");
    assert_eq!(name, "bar");
}

#[handler]
async fn c(Path(path): Path<String>) {
    assert_eq!(path, "d/e");
}

let app = Route::new()
    // full path
    .at("/a/b", get(a))
    // capture parameters
    .at("/b/:group/:name", get(b))
    // capture tail path
    .at("/c/*path", get(c))
    // match regex
    .at("/d/<\\d+>", get(a))
    // capture with regex
    .at("/e/:name<\\d+>", get(a));

let cli = TestClient::new(app);

// /a/b
cli.get("/a/b").send().await.assert_status_is_ok();

// /b/:group/:name
cli.get("/b/foo/bar").send().await.assert_status_is_ok();

// /c/*path
cli.get("/c/d/e").send().await.assert_status_is_ok();

// /d/<\\d>
cli.get("/d/123").send().await.assert_status_is_ok();

// /e/:name<\\d>
cli.get("/e/123").send().await.assert_status_is_ok();

§Nested

use poem::{
    handler,
    http::{StatusCode, Uri},
    test::TestClient,
    Endpoint, Request, Route,
};

#[handler]
fn index() -> &'static str {
    "hello"
}

let app = Route::new().nest("/foo", Route::new().at("/bar", index));
let cli = TestClient::new(app);

let resp = cli.get("/foo/bar").send().await;
resp.assert_status_is_ok();
resp.assert_text("hello").await;

§Nested no strip

use poem::{
    handler,
    http::{StatusCode, Uri},
    test::TestClient,
    Endpoint, Request, Route,
};

#[handler]
fn index() -> &'static str {
    "hello"
}

let app = Route::new().nest_no_strip("/foo", Route::new().at("/foo/bar", index));
let cli = TestClient::new(app);

let resp = cli.get("/foo/bar").send().await;
resp.assert_status_is_ok();
resp.assert_text("hello").await;

Implementations§

source§

impl Route

source

pub fn new() -> Route

Create a new routing object.

source

pub fn at<E>(self, path: impl AsRef<str>, ep: E) -> Self
where E: IntoEndpoint, E::Endpoint: 'static,

Add an Endpoint to the specified path.

§Panics

Panic when there are duplicates in the routing table.

source

pub fn try_at<E>(self, path: impl AsRef<str>, ep: E) -> Result<Self, RouteError>
where E: IntoEndpoint, E::Endpoint: 'static,

Attempts to add an Endpoint to the specified path.

source

pub fn just_at<E>(self, ep: E) -> Self
where E: IntoEndpoint, E::Endpoint: 'static,

Add an Endpoint to the / path.

Same as self.at("/", ep).

See Route::at for more details.

source

pub fn nest<E>(self, path: impl AsRef<str>, ep: E) -> Self
where E: IntoEndpoint, E::Endpoint: 'static,

Nest a Endpoint to the specified path and strip the prefix.

§Panics

Panic when there are duplicates in the routing table.

source

pub fn try_nest<E>( self, path: impl AsRef<str>, ep: E ) -> Result<Self, RouteError>
where E: IntoEndpoint, E::Endpoint: 'static,

Attempts to nest a Endpoint to the specified path and strip the prefix.

source

pub fn nest_no_strip<E>(self, path: impl AsRef<str>, ep: E) -> Self
where E: IntoEndpoint, E::Endpoint: 'static,

Nest a Endpoint to the specified path, but do not strip the prefix.

§Panics

Panic when there are duplicates in the routing table.

source

pub fn try_nest_no_strip<E>( self, path: impl AsRef<str>, ep: E ) -> Result<Self, RouteError>
where E: IntoEndpoint, E::Endpoint: 'static,

Attempts to nest a Endpoint to the specified path, but do not strip the prefix.

Trait Implementations§

source§

impl Default for Route

source§

fn default() -> Route

Returns the “default value” for a type. Read more
source§

impl Endpoint for Route

§

type Output = Response

Represents the response of the endpoint.
source§

async fn call(&self, req: Request) -> Result<Self::Output>

Get the response to the request.
source§

fn get_response(&self, req: Request) -> impl Future<Output = Response> + Send

Get the response to the request and return a Response. Read more

Auto Trait Implementations§

§

impl Freeze for Route

§

impl !RefUnwindSafe for Route

§

impl Send for Route

§

impl Sync for Route

§

impl Unpin for Route

§

impl !UnwindSafe for Route

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> EndpointExt for T
where T: IntoEndpoint,

source§

fn boxed<'a>(self) -> BoxEndpoint<'a, <Self::Endpoint as Endpoint>::Output>
where Self: Sized + 'a,

Wrap the endpoint in a Box.
source§

fn with<T>(self, middleware: T) -> T::Output
where T: Middleware<Self::Endpoint>, Self: Sized,

Use middleware to transform this endpoint. Read more
source§

fn with_if<T>( self, enable: bool, middleware: T ) -> EitherEndpoint<Self, T::Output>
where T: Middleware<Self::Endpoint>, Self: Sized,

if enable is true then use middleware to transform this endpoint. Read more
source§

fn data<T>(self, data: T) -> AddDataEndpoint<Self::Endpoint, T>
where T: Clone + Send + Sync + 'static, Self: Sized,

Attach a state data to the endpoint, similar to with(AddData(T)). Read more
source§

fn data_opt<T>( self, data: Option<T> ) -> EitherEndpoint<AddDataEndpoint<Self::Endpoint, T>, Self>
where T: Clone + Send + Sync + 'static, Self: Sized,

if data is Some(T) then attach the value to the endpoint.
source§

fn before<F, Fut>(self, f: F) -> Before<Self, F>
where F: Fn(Request) -> Fut + Send + Sync, Fut: Future<Output = Result<Request>> + Send, Self: Sized,

Maps the request of this endpoint. Read more
source§

fn after<F, Fut, T>(self, f: F) -> After<Self::Endpoint, F>
where F: Fn(Result<<Self::Endpoint as Endpoint>::Output>) -> Fut + Send + Sync, Fut: Future<Output = Result<T>> + Send, T: IntoResponse, Self: Sized,

Maps the output of this endpoint. Read more
source§

fn around<F, Fut, R>(self, f: F) -> Around<Self::Endpoint, F>
where F: Fn(Arc<Self::Endpoint>, Request) -> Fut + Send + Sync + 'static, Fut: Future<Output = Result<R>> + Send + 'static, R: IntoResponse, Self: Sized,

Maps the request and response of this endpoint. Read more
source§

fn map_to_response(self) -> MapToResponse<Self::Endpoint>
where Self: Sized,

Convert the output of this endpoint into a response. Response. Read more
source§

fn to_response(self) -> ToResponse<Self::Endpoint>
where Self: Sized,

Convert the output of this endpoint into a response. Response. Read more
source§

fn map<F, Fut, R, R2>(self, f: F) -> Map<Self::Endpoint, F>
where F: Fn(R) -> Fut + Send + Sync, Fut: Future<Output = R2> + Send, R: IntoResponse, R2: IntoResponse, Self: Sized, Self::Endpoint: Endpoint<Output = R> + Sized,

Maps the response of this endpoint. Read more
source§

fn and_then<F, Fut, R, R2>(self, f: F) -> AndThen<Self::Endpoint, F>
where F: Fn(R) -> Fut + Send + Sync, Fut: Future<Output = Result<R2>> + Send, R: IntoResponse, R2: IntoResponse, Self: Sized, Self::Endpoint: Endpoint<Output = R> + Sized,

Calls f if the result is Ok, otherwise returns the Err value of self. Read more
source§

fn catch_all_error<F, Fut, R>(self, f: F) -> CatchAllError<Self, F, R>
where F: Fn(Error) -> Fut + Send + Sync, Fut: Future<Output = R> + Send, R: IntoResponse + Send, Self: Sized + Sync,

Catch all errors and convert it into a response. Read more
source§

fn catch_error<F, Fut, R, ErrType>( self, f: F ) -> CatchError<Self, F, R, ErrType>
where F: Fn(ErrType) -> Fut + Send + Sync, Fut: Future<Output = R> + Send, R: IntoResponse + Send + Sync, ErrType: Error + Send + Sync + 'static, Self: Sized,

Catch the specified type of error and convert it into a response. Read more
source§

fn inspect_all_err<F>(self, f: F) -> InspectAllError<Self, F>
where F: Fn(&Error) + Send + Sync, Self: Sized,

Does something with each error. Read more
source§

fn inspect_err<F, ErrType>(self, f: F) -> InspectError<Self, F, ErrType>
where F: Fn(&ErrType) + Send + Sync, ErrType: Error + Send + Sync + 'static, Self: Sized,

Does something with each specified error type. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> FutureExt for T

source§

fn with_context(self, otel_cx: Context) -> WithContext<Self>

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
source§

fn with_current_context(self) -> WithContext<Self>

Attaches the current Context to this type, returning a WithContext wrapper. Read more
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> IntoEndpoint for T
where T: Endpoint,

§

type Endpoint = T

Represents the endpoint type.
source§

fn into_endpoint(self) -> <T as IntoEndpoint>::Endpoint

Converts this object into endpoint.
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> TowerCompatExt for T

source§

fn compat<ResBody, Err, Fut>(self) -> TowerCompatEndpoint<Self>
where ResBody: Body + Send + Sync + 'static, ResBody::Data: Into<Bytes> + Send + 'static, ResBody::Error: StdError + Send + Sync + 'static, Err: Into<Error>, Self: Service<Request<BoxBody<Bytes, Error>>, Response = Response<ResBody>, Error = Err, Future = Fut> + Clone + Send + Sync + Sized + 'static, Fut: Future<Output = Result<Response<ResBody>, Err>> + Send + 'static,

Available on crate feature tower-compat only.
Converts a tower service to a poem endpoint.
source§

impl<L> TowerLayerCompatExt for L

source§

fn compat(self) -> TowerCompatMiddleware<Self>
where Self: Sized,

Available on crate feature tower-compat only.
Converts a tower layer to a poem middleware.
source§

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

§

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>,

§

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