[][src]Union libyang2_sys::lyd_value__bindgen_ty_1

#[repr(C)]pub union lyd_value__bindgen_ty_1 {
    pub boolean: i8,
    pub dec64: i64,
    pub int8: i8,
    pub int16: i16,
    pub int32: i32,
    pub int64: i64,
    pub uint8: u8,
    pub uint16: u16,
    pub uint32: u32,
    pub uint64: u64,
    pub enum_item: *mut lysc_type_bitenum_item,
    pub bits_items: *mut *mut lysc_type_bitenum_item,
    pub ident: *mut lysc_ident,
    pub target: *mut ly_path,
    pub subvalue: *mut lyd_value_subvalue,
    pub ptr: *mut c_void,
    // some fields omitted
}

Fields

boolean: i8dec64: i64int8: i8int16: i16int32: i32int64: i64uint8: u8uint16: u16uint32: u32uint64: u64enum_item: *mut lysc_type_bitenum_itembits_items: *mut *mut lysc_type_bitenum_itemident: *mut lysc_identtarget: *mut ly_pathsubvalue: *mut lyd_value_subvalueptr: *mut c_void

Trait Implementations

impl Clone for lyd_value__bindgen_ty_1[src]

impl Copy for lyd_value__bindgen_ty_1[src]

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