[][src]Struct libyang2_sys::lysp_type

#[repr(C)]pub struct lysp_type {
    pub name: *const c_char,
    pub range: *mut lysp_restr,
    pub length: *mut lysp_restr,
    pub patterns: *mut lysp_restr,
    pub enums: *mut lysp_type_enum,
    pub bits: *mut lysp_type_enum,
    pub path: *mut lyxp_expr,
    pub bases: *mut *const c_char,
    pub types: *mut lysp_type,
    pub exts: *mut lysp_ext_instance,
    pub pmod: *const lysp_module,
    pub compiled: *mut lysc_type,
    pub fraction_digits: u8,
    pub require_instance: u8,
    pub flags: u16,
}

Fields

name: *const c_charrange: *mut lysp_restrlength: *mut lysp_restrpatterns: *mut lysp_restrenums: *mut lysp_type_enumbits: *mut lysp_type_enumpath: *mut lyxp_exprbases: *mut *const c_chartypes: *mut lysp_typeexts: *mut lysp_ext_instancepmod: *const lysp_modulecompiled: *mut lysc_typefraction_digits: u8require_instance: u8flags: u16

Trait Implementations

impl Clone for lysp_type[src]

impl Copy for lysp_type[src]

impl Debug for lysp_type[src]

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