pub trait Endpoint {
    type Value: DeserializeOwned;

    const URI: &'static str;
    const AUTHENTICATED: bool;
    const LOCALIZED: bool;
}

Required Associated Types

Required Associated Constants

Implementors