[][src]Struct libyang2_sys::lysp_node_list

#[repr(C)]pub struct lysp_node_list {
    pub parent: *mut lysp_node,
    pub nodetype: u16,
    pub flags: u16,
    pub next: *mut lysp_node,
    pub name: *const c_char,
    pub dsc: *const c_char,
    pub ref_: *const c_char,
    pub when: *mut lysp_when,
    pub iffeatures: *mut lysp_qname,
    pub exts: *mut lysp_ext_instance,
    pub musts: *mut lysp_restr,
    pub key: *const c_char,
    pub typedefs: *mut lysp_tpdf,
    pub groupings: *mut lysp_grp,
    pub child: *mut lysp_node,
    pub actions: *mut lysp_action,
    pub notifs: *mut lysp_notif,
    pub uniques: *mut lysp_qname,
    pub min: u32,
    pub max: u32,
}

Fields

parent: *mut lysp_nodenodetype: u16flags: u16next: *mut lysp_nodename: *const c_chardsc: *const c_charref_: *const c_charwhen: *mut lysp_wheniffeatures: *mut lysp_qnameexts: *mut lysp_ext_instancemusts: *mut lysp_restrkey: *const c_chartypedefs: *mut lysp_tpdfgroupings: *mut lysp_grpchild: *mut lysp_nodeactions: *mut lysp_actionnotifs: *mut lysp_notifuniques: *mut lysp_qnamemin: u32max: u32

Trait Implementations

impl Clone for lysp_node_list[src]

impl Copy for lysp_node_list[src]

impl Debug for lysp_node_list[src]

impl Default for lysp_node_list[src]

Auto Trait Implementations

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.