pub trait IntoEndpoint {
    type Endpoint: Endpoint;

    fn into_endpoint(self) -> Self::Endpoint;
}
Expand description

Represents a type that can convert into endpoint.

Required Associated Types

Represents the endpoint type.

Required Methods

Converts this object into endpoint.

Implementors