[][src]Struct libyang2_sys::lysp_ext_instance

#[repr(C)]pub struct lysp_ext_instance {
    pub name: *const c_char,
    pub argument: *const c_char,
    pub parent: *mut c_void,
    pub child: *mut lysp_stmt,
    pub compiled: *mut lysc_ext_instance,
    pub insubstmt: Type,
    pub insubstmt_index: u64,
    pub flags: u16,
    pub yin: u8,
    pub parent_type: Type,
}

Fields

name: *const c_charargument: *const c_charparent: *mut c_voidchild: *mut lysp_stmtcompiled: *mut lysc_ext_instanceinsubstmt: Typeinsubstmt_index: u64flags: u16yin: u8parent_type: Type

Trait Implementations

impl Clone for lysp_ext_instance[src]

impl Copy for lysp_ext_instance[src]

impl Debug for lysp_ext_instance[src]

impl Default for lysp_ext_instance[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.