pub trait IntoEndpoint {
type Endpoint: Endpoint;
// Required method
fn into_endpoint(self) -> Self::Endpoint;
}pub trait IntoEndpoint {
type Endpoint: Endpoint;
// Required method
fn into_endpoint(self) -> Self::Endpoint;
}