#[repr(C)]pub struct HTTP_REQUEST_V1 {Show 18 fields
pub Flags: ULONG,
pub ConnectionId: HTTP_CONNECTION_ID,
pub RequestId: HTTP_REQUEST_ID,
pub UrlContext: HTTP_URL_CONTEXT,
pub Version: HTTP_VERSION,
pub Verb: HTTP_VERB,
pub UnknownVerbLength: USHORT,
pub RawUrlLength: USHORT,
pub pUnknownVerb: PCSTR,
pub pRawUrl: PCSTR,
pub CookedUrl: HTTP_COOKED_URL,
pub Address: HTTP_TRANSPORT_ADDRESS,
pub Headers: HTTP_REQUEST_HEADERS,
pub BytesReceived: ULONGLONG,
pub EntityChunkCount: USHORT,
pub pEntityChunks: PHTTP_DATA_CHUNK,
pub RawConnectionId: HTTP_RAW_CONNECTION_ID,
pub pSslInfo: PHTTP_SSL_INFO,
}
Fields§
§Flags: ULONG
§ConnectionId: HTTP_CONNECTION_ID
§RequestId: HTTP_REQUEST_ID
§UrlContext: HTTP_URL_CONTEXT
§Version: HTTP_VERSION
§Verb: HTTP_VERB
§UnknownVerbLength: USHORT
§RawUrlLength: USHORT
§pUnknownVerb: PCSTR
§pRawUrl: PCSTR
§CookedUrl: HTTP_COOKED_URL
§Address: HTTP_TRANSPORT_ADDRESS
§Headers: HTTP_REQUEST_HEADERS
§BytesReceived: ULONGLONG
§EntityChunkCount: USHORT
§pEntityChunks: PHTTP_DATA_CHUNK
§RawConnectionId: HTTP_RAW_CONNECTION_ID
§pSslInfo: PHTTP_SSL_INFO
Trait Implementations§
Source§impl Clone for HTTP_REQUEST_V1
impl Clone for HTTP_REQUEST_V1
Source§fn clone(&self) -> HTTP_REQUEST_V1
fn clone(&self) -> HTTP_REQUEST_V1
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for HTTP_REQUEST_V1
impl Default for HTTP_REQUEST_V1
Source§fn default() -> HTTP_REQUEST_V1
fn default() -> HTTP_REQUEST_V1
Returns the “default value” for a type. Read more
impl Copy for HTTP_REQUEST_V1
Auto Trait Implementations§
impl Freeze for HTTP_REQUEST_V1
impl RefUnwindSafe for HTTP_REQUEST_V1
impl !Send for HTTP_REQUEST_V1
impl !Sync for HTTP_REQUEST_V1
impl Unpin for HTTP_REQUEST_V1
impl UnwindSafe for HTTP_REQUEST_V1
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