pub trait Endpoint<Specialized = ()>: MaybeSend + MaybeSync {
type Output: MaybeSend + MaybeSync;
// Required methods
fn grpc_endpoint(&self) -> Cow<'static, str>;
fn body(&self) -> Result<Bytes, BodyError>;
}Expand description
provides the necessary information for a backend API call. Indicates the Output type