Trait poem::IntoEndpoint[][src]

pub trait IntoEndpoint {
    type Endpoint: Endpoint;
    fn into_endpoint(self) -> Self::Endpoint;
}
Expand description

Represents a type that can convert into endpoint.

Associated Types

Represents the endpoint type.

Required methods

Converts this object into endpoint.

Implementors