Struct ruma_client_api::r0::capabilities::get_capabilities::Response [−][src]
pub struct Response {
pub capabilities: Capabilities,
}Expand description
Data in the response from the get_capabilities API endpoint.
Fields
capabilities: CapabilitiesThe capabilities the server supports
Implementations
impl Response[src]
impl Response[src]pub fn new(capabilities: Capabilities) -> Self[src]
pub fn new(capabilities: Capabilities) -> Self[src]Creates a new Response with the given capabilities.
Trait Implementations
impl From<Capabilities> for Response[src]
impl From<Capabilities> for Response[src]fn from(capabilities: Capabilities) -> Self[src]
fn from(capabilities: Capabilities) -> Self[src]Performs the conversion.
impl IncomingResponse for Response[src]
impl IncomingResponse for Response[src]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>>[src]
fn try_from_http_response<T: AsRef<[u8]>>(
response: Response<T>
) -> Result<Self, FromHttpResponseError<Error>>[src]Tries to convert the given http::Response into this response type.
impl OutgoingResponse for Response[src]
impl OutgoingResponse for Response[src]fn try_into_http_response<T: Default + BufMut>(
self
) -> Result<Response<T>, IntoHttpError>[src]
fn try_into_http_response<T: Default + BufMut>(
self
) -> Result<Response<T>, IntoHttpError>[src]Tries to convert this response into an http::Response. Read more
Auto Trait Implementations
impl RefUnwindSafe for Response
impl Send for Response
impl Sync for Response
impl Unpin for Response
impl UnwindSafe for Response
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> Instrument for T[src]
impl<T> Instrument for T[src]fn instrument(self, span: Span) -> Instrumented<Self>[src]
fn instrument(self, span: Span) -> Instrumented<Self>[src]Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
fn in_current_span(self) -> Instrumented<Self>[src]
fn in_current_span(self) -> Instrumented<Self>[src]impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more