Struct tauri::http::Request
x3A;:Request,
pub struct Request {
pub head: RequestParts,
pub body: Vec<u8, Global>,
}Expand description
Represents an HTTP request from the WebView.
An HTTP request consists of a head and a potentially optional body.
Platform-specific#
- Linux: Headers are not exposed.
Fields#
head: RequestParts``body: Vec<u8, Global>
Implementations#
impl Request#
pub fn new(body: Vec<u8, Global>) -> Request#
Creates a new blank Request with the body
pub fn method(&self) -> &Method#
Returns a reference to the associated HTTP method.
pub fn uri(&self) -> &str#
Returns a reference to the associated URI.
pub fn headers(&self) -> &HeaderMap<HeaderValue>#
Returns a reference to the associated header field map.
pub fn body(&self) -> &Vec<u8, Global>#
Returns a reference to the associated HTTP body.
pub fn into_parts(self) -> (RequestParts, Vec<u8, Global>)#
Consumes the request returning the head and body RequestParts.
Trait Implementations#
impl Debug for Request#
pub fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>#
Formats the value using the given formatter. Read more
impl Default for Request#
pub fn default() -> Request#
Returns the “default value” for a type. Read more
Auto Trait Implementations#
impl RefUnwindSafe for Request#
impl Send for Request#
impl Sync for Request#
impl Unpin for Request#
impl UnwindSafe for Request#
Blanket Implementations#
impl<T> Any for T where T: 'static + ?Sized,[src]#
pub fn type_id(&self) -> TypeId[src]#
Gets the TypeId of self. Read more
impl<T> Borrow<T> for T where T: ?Sized,[src]#
pub fn borrow(&self) -> &T[src]#
Immutably borrows from an owned value. Read more
impl<T> BorrowMut<T> for T where T: ?Sized,[src]#
pub fn borrow_mut(&mut self) -> &mutT[src]#
Mutably borrows from an owned value. Read more
impl<T> From<T> for T[src]#
pub fn from(t: T) -> T[src]#
Performs the conversion.
impl<T, U> Into<U> for T where U: From<T>,[src]#
pub fn into(self) -> U[src]#
Performs the conversion.
impl<T, U> TryFrom<U> for T where U: Into<T>,[src]#
type Error = Infallible#
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]#
Performs the conversion.
impl<T, U> TryInto<U> for T where U: TryFrom<T>,[src]#
type Error = <U as TryFrom<T>>::Error#
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]#
Performs the conversion.