Struct windows_sys::Win32::Networking::HttpServer::HTTP_RESPONSE_V1
#[repr(C)]pub struct HTTP_RESPONSE_V1 {
pub Flags: u32,
pub Version: HTTP_VERSION,
pub StatusCode: u16,
pub ReasonLength: u16,
pub pReason: PCSTR,
pub Headers: HTTP_RESPONSE_HEADERS,
pub EntityChunkCount: u16,
pub pEntityChunks: *mut HTTP_DATA_CHUNK,
}
Expand description
Required features: "Win32_Foundation"
Fields§
§Flags: u32
§Version: HTTP_VERSION
§StatusCode: u16
§ReasonLength: u16
§pReason: PCSTR
§Headers: HTTP_RESPONSE_HEADERS
§EntityChunkCount: u16
§pEntityChunks: *mut HTTP_DATA_CHUNK
Trait Implementations§
§impl Clone for HTTP_RESPONSE_V1
impl Clone for HTTP_RESPONSE_V1
impl Copy for HTTP_RESPONSE_V1
Auto Trait Implementations§
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