#[repr(C)]pub struct HTTP_RESPONSE_V1 {
pub Flags: ULONG,
pub Version: HTTP_VERSION,
pub StatusCode: USHORT,
pub ReasonLength: USHORT,
pub pReason: PCSTR,
pub Headers: HTTP_RESPONSE_HEADERS,
pub EntityChunkCount: USHORT,
pub pEntityChunks: PHTTP_DATA_CHUNK,
}
Fields§
§Flags: ULONG
§Version: HTTP_VERSION
§StatusCode: USHORT
§ReasonLength: USHORT
§pReason: PCSTR
§Headers: HTTP_RESPONSE_HEADERS
§EntityChunkCount: USHORT
§pEntityChunks: PHTTP_DATA_CHUNK
Trait Implementations§
Source§impl Clone for HTTP_RESPONSE_V1
impl Clone for HTTP_RESPONSE_V1
Source§fn clone(&self) -> HTTP_RESPONSE_V1
fn clone(&self) -> HTTP_RESPONSE_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_RESPONSE_V1
impl Default for HTTP_RESPONSE_V1
Source§fn default() -> HTTP_RESPONSE_V1
fn default() -> HTTP_RESPONSE_V1
Returns the “default value” for a type. Read more
impl Copy for HTTP_RESPONSE_V1
Auto Trait Implementations§
impl Freeze for HTTP_RESPONSE_V1
impl RefUnwindSafe for HTTP_RESPONSE_V1
impl !Send for HTTP_RESPONSE_V1
impl !Sync for HTTP_RESPONSE_V1
impl Unpin for HTTP_RESPONSE_V1
impl UnwindSafe for HTTP_RESPONSE_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