pub struct HttpRequest {
pub method: Option<HTTPMethod>,
pub url: String,
pub headers: HashMap<String, String>,
pub body: String,
/* private fields */
}
Fields§
§method: Option<HTTPMethod>
§url: String
§headers: HashMap<String, String>
§body: String
Trait Implementations§
Source§impl Debug for HttpRequest
impl Debug for HttpRequest
Source§impl Default for HttpRequest
impl Default for HttpRequest
Source§impl RequestMessage for HttpRequest
impl RequestMessage for HttpRequest
fn compute_size(&self) -> u64
fn serial_with_output_stream( &self, os: &mut CodedOutputStream<'_>, ) -> Result<(), Status>
fn parse_from_input_stream( &mut self, is: &mut CodedInputStream<'_>, ) -> Result<(), Status>
fn compute_size_with_tag_and_len(&self) -> u64
fn serial_with_tag_and_len(&self, os: &mut CodedOutputStream<'_>)
fn serial(&self) -> Result<Vec<u8>, String>
fn parse_from_bytes(&mut self, bytes: &[u8]) -> Result<(), Status>
fn parse_from_input_stream_with_tag_and_len( &mut self, is: &mut CodedInputStream<'_>, )
fn parse_from_bytes_return_num(&mut self, bytes: &[u8]) -> Result<u64, Status>
Auto Trait Implementations§
impl !Freeze for HttpRequest
impl RefUnwindSafe for HttpRequest
impl Send for HttpRequest
impl Sync for HttpRequest
impl Unpin for HttpRequest
impl UnwindSafe for HttpRequest
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more