#[repr(C)]pub struct SoupURI {
pub scheme: *const c_char,
pub user: *mut c_char,
pub password: *mut c_char,
pub host: *mut c_char,
pub port: c_uint,
pub path: *mut c_char,
pub query: *mut c_char,
pub fragment: *mut c_char,
}
Fields§
§scheme: *const c_char
§user: *mut c_char
§password: *mut c_char
§host: *mut c_char
§port: c_uint
§path: *mut c_char
§query: *mut c_char
§fragment: *mut c_char
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SoupURI
impl RefUnwindSafe for SoupURI
impl !Send for SoupURI
impl !Sync for SoupURI
impl Unpin for SoupURI
impl UnwindSafe for SoupURI
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