#[repr(C)]pub struct URL_COMPONENTS {Show 15 fields
pub dwStructSize: DWORD,
pub lpszScheme: LPWSTR,
pub dwSchemeLength: DWORD,
pub nScheme: INTERNET_SCHEME,
pub lpszHostName: LPWSTR,
pub dwHostNameLength: DWORD,
pub nPort: INTERNET_PORT,
pub lpszUserName: LPWSTR,
pub dwUserNameLength: DWORD,
pub lpszPassword: LPWSTR,
pub dwPasswordLength: DWORD,
pub lpszUrlPath: LPWSTR,
pub dwUrlPathLength: DWORD,
pub lpszExtraInfo: LPWSTR,
pub dwExtraInfoLength: DWORD,
}
Fields§
§dwStructSize: DWORD
§lpszScheme: LPWSTR
§dwSchemeLength: DWORD
§nScheme: INTERNET_SCHEME
§lpszHostName: LPWSTR
§dwHostNameLength: DWORD
§nPort: INTERNET_PORT
§lpszUserName: LPWSTR
§dwUserNameLength: DWORD
§lpszPassword: LPWSTR
§dwPasswordLength: DWORD
§lpszUrlPath: LPWSTR
§dwUrlPathLength: DWORD
§lpszExtraInfo: LPWSTR
§dwExtraInfoLength: DWORD
Trait Implementations§
Source§impl Clone for URL_COMPONENTS
impl Clone for URL_COMPONENTS
Source§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 moreSource§impl Default for URL_COMPONENTS
impl Default for URL_COMPONENTS
Source§fn default() -> URL_COMPONENTS
fn default() -> URL_COMPONENTS
Returns the “default value” for a type. Read more
impl 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