Struct ruma_client_api::r0::push::get_notifications::Response [−][src]
pub struct Response {
pub next_token: Option<String>,
pub notifications: Vec<Notification>,
}Expand description
Data in the response from the get_notifications API endpoint.
Fields
next_token: Option<String>The token to supply in the from param of the next /notifications request in order to request more events. If this is absent, there are no more results.
notifications: Vec<Notification>The list of events that triggered notifications.
Implementations
Creates a new Response with the given notifications.
Trait Implementations
type EndpointError = Error
type EndpointError = ErrorA type capturing the expected error conditions the server can return.
fn try_from_http_response<T: AsRef<[u8]>>(
response: Response<T>
) -> Result<Self, FromHttpResponseError<Error>>
fn try_from_http_response<T: AsRef<[u8]>>(
response: Response<T>
) -> Result<Self, FromHttpResponseError<Error>>Tries to convert the given http::Response into this response type.
Tries to convert this response into an http::Response. Read more
Auto Trait Implementations
impl RefUnwindSafe for Responseimpl UnwindSafe for ResponseBlanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more