Struct HTTP_COOKED_URL
#[repr(C)]pub struct HTTP_COOKED_URL {
pub FullUrlLength: u16,
pub HostLength: u16,
pub AbsPathLength: u16,
pub QueryStringLength: u16,
pub pFullUrl: PCWSTR,
pub pHost: PCWSTR,
pub pAbsPath: PCWSTR,
pub pQueryString: PCWSTR,
}
Fields§
§FullUrlLength: u16
§HostLength: u16
§AbsPathLength: u16
§QueryStringLength: u16
§pFullUrl: PCWSTR
§pHost: PCWSTR
§pAbsPath: PCWSTR
§pQueryString: PCWSTR
Trait Implementations§
§impl Clone for HTTP_COOKED_URL
impl Clone for HTTP_COOKED_URL
§fn clone(&self) -> HTTP_COOKED_URL
fn clone(&self) -> HTTP_COOKED_URL
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 moreimpl Copy for HTTP_COOKED_URL
Auto Trait Implementations§
impl Freeze for HTTP_COOKED_URL
impl RefUnwindSafe for HTTP_COOKED_URL
impl !Send for HTTP_COOKED_URL
impl !Sync for HTTP_COOKED_URL
impl Unpin for HTTP_COOKED_URL
impl UnwindSafe for HTTP_COOKED_URL
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