pub trait HasEndpoints {
// Required method
fn get_endpoints(&self) -> Option<Vec<ServiceEndpoint>>;
}
Expand description
Extracts endpoints (ServiceEndpoint
) from a type.
Required Methods§
Sourcefn get_endpoints(&self) -> Option<Vec<ServiceEndpoint>>
fn get_endpoints(&self) -> Option<Vec<ServiceEndpoint>>
Gets endpoints.