Struct ruma_api::Metadata

source ·
pub struct Metadata {
    pub description: &'static str,
    pub method: Method,
    pub name: &'static str,
    pub path: &'static str,
    pub rate_limited: bool,
    pub requires_authentication: bool,
}
Expand description

Metadata about an API endpoint.

Fields§

§description: &'static str

A human-readable description of the endpoint.

§method: Method

The HTTP method used by this endpoint.

§name: &'static str

A unique identifier for this endpoint.

§path: &'static str

The path of this endpoint’s URL, with variable names where path parameters should be filled in during a request.

§rate_limited: bool

Whether or not this endpoint is rate limited by the server.

§requires_authentication: bool

Whether or not the server requires an authenticated user for this endpoint.

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.