pub struct IncomingRequest {
pub media_id: String,
pub server_name: OwnedServerName,
pub allow_remote: bool,
pub max_stall_ms: Option<UInt>,
}Available on crate features
client or server only.Expand description
‘Incoming’ variant of Request.
Fields§
§media_id: StringThe media ID from the mxc:// URI (the path component).
server_name: OwnedServerNameThe server name from the mxc:// URI (the authoritory component).
allow_remote: boolWhether to fetch media deemed remote.
Used to prevent routing loops. Defaults to true.
max_stall_ms: Option<UInt>Available on crate feature
unstable-msc2246 only.How long to wait for the media to be uploaded
This uses the unstable prefix in MSC2246
Trait Implementations§
Source§impl Debug for IncomingRequest
impl Debug for IncomingRequest
Source§impl IncomingRequest for IncomingRequest
Available on crate feature server only.
impl IncomingRequest for IncomingRequest
Available on crate feature
server only.Source§type EndpointError = Error
type EndpointError = Error
A type capturing the error conditions that can be returned in the response.
Source§type OutgoingResponse = Response
type OutgoingResponse = Response
Response type to return when the request is successful.
impl IncomingNonAuthRequest for IncomingRequest
Available on crate feature
server only.Auto Trait Implementations§
impl Freeze for IncomingRequest
impl RefUnwindSafe for IncomingRequest
impl Send for IncomingRequest
impl Sync for IncomingRequest
impl Unpin for IncomingRequest
impl UnwindSafe for IncomingRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more