[][src]Struct nng_sys::nng_url

#[repr(C)]
pub struct nng_url {
    pub u_rawurl: *mut c_char,
    pub u_scheme: *mut c_char,
    pub u_userinfo: *mut c_char,
    pub u_host: *mut c_char,
    pub u_hostname: *mut c_char,
    pub u_port: *mut c_char,
    pub u_path: *mut c_char,
    pub u_query: *mut c_char,
    pub u_fragment: *mut c_char,
    pub u_requri: *mut c_char,
}

Fields

u_rawurl: *mut c_charu_scheme: *mut c_charu_userinfo: *mut c_charu_host: *mut c_charu_hostname: *mut c_charu_port: *mut c_charu_path: *mut c_charu_query: *mut c_charu_fragment: *mut c_charu_requri: *mut c_char

Trait Implementations

impl Clone for nng_url[src]

impl Copy for nng_url[src]

impl Debug for nng_url[src]

impl Default for nng_url[src]

Auto Trait Implementations

impl RefUnwindSafe for nng_url

impl !Send for nng_url

impl !Sync for nng_url

impl Unpin for nng_url

impl UnwindSafe for nng_url

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.