pub struct Urlparts {
pub size: usize,
pub spec: CefString,
pub scheme: CefString,
pub username: CefString,
pub password: CefString,
pub host: CefString,
pub port: CefString,
pub origin: CefString,
pub path: CefString,
pub query: CefString,
pub fragment: CefString,
}Expand description
See _cef_urlparts_t for more documentation.
Fields§
§size: usize§spec: CefString§scheme: CefString§username: CefString§password: CefString§host: CefString§port: CefString§origin: CefString§path: CefString§query: CefString§fragment: CefStringTrait Implementations§
Source§impl From<Urlparts> for _cef_urlparts_t
impl From<Urlparts> for _cef_urlparts_t
Source§impl From<_cef_urlparts_t> for Urlparts
impl From<_cef_urlparts_t> for Urlparts
Source§fn from(value: _cef_urlparts_t) -> Self
fn from(value: _cef_urlparts_t) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Urlparts
impl RefUnwindSafe for Urlparts
impl !Send for Urlparts
impl !Sync for Urlparts
impl Unpin for Urlparts
impl UnwindSafe for Urlparts
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