Struct URL_COMPONENTS
#[repr(C)]pub struct URL_COMPONENTS {Show 15 fields
pub dwStructSize: u32,
pub lpszScheme: PWSTR,
pub dwSchemeLength: u32,
pub nScheme: WINHTTP_INTERNET_SCHEME,
pub lpszHostName: PWSTR,
pub dwHostNameLength: u32,
pub nPort: u16,
pub lpszUserName: PWSTR,
pub dwUserNameLength: u32,
pub lpszPassword: PWSTR,
pub dwPasswordLength: u32,
pub lpszUrlPath: PWSTR,
pub dwUrlPathLength: u32,
pub lpszExtraInfo: PWSTR,
pub dwExtraInfoLength: u32,
}
Fields§
§dwStructSize: u32
§lpszScheme: PWSTR
§dwSchemeLength: u32
§nScheme: WINHTTP_INTERNET_SCHEME
§lpszHostName: PWSTR
§dwHostNameLength: u32
§nPort: u16
§lpszUserName: PWSTR
§dwUserNameLength: u32
§lpszPassword: PWSTR
§dwPasswordLength: u32
§lpszUrlPath: PWSTR
§dwUrlPathLength: u32
§lpszExtraInfo: PWSTR
§dwExtraInfoLength: u32
Trait Implementations§
§impl Clone for URL_COMPONENTS
impl Clone for URL_COMPONENTS
§fn clone(&self) -> URL_COMPONENTS
fn clone(&self) -> URL_COMPONENTS
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 URL_COMPONENTS
Auto Trait Implementations§
impl Freeze for URL_COMPONENTS
impl RefUnwindSafe for URL_COMPONENTS
impl !Send for URL_COMPONENTS
impl !Sync for URL_COMPONENTS
impl Unpin for URL_COMPONENTS
impl UnwindSafe for URL_COMPONENTS
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