Struct ruma_client_api::r0::media::get_content::Response [−][src]
pub struct Response {
pub file: Vec<u8>,
pub content_type: Option<String>,
pub content_disposition: Option<String>,
}Expand description
Data in the response from the get_media_content API endpoint.
Fields
file: Vec<u8>The content that was previously uploaded.
content_type: Option<String>The content type of the file that was previously uploaded.
content_disposition: Option<String>The value of the Content-Disposition HTTP header, possibly containing the name of the
file that was previously uploaded.
See MDN for the syntax.
Implementations
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