#[repr(C)]pub struct lysp_node_anydata__bindgen_ty_1__bindgen_ty_1 {
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 iffeatures: *mut lysp_qname,
pub exts: *mut lysp_ext_instance,
}Fields§
§parent: *mut lysp_node< parent node (NULL if this is a top-level node)
nodetype: u16< LYS_ANYXML or LYS_ANYDATA
flags: u16< [schema node flags](@ref snodeflags)
next: *mut lysp_node< pointer to the next sibling node (NULL if there is no one)
name: *const c_char< node name (mandatory)
dsc: *const c_char< description statement
ref_: *const c_char< reference statement
iffeatures: *mut lysp_qname< list of if-feature expressions ([sized array](@ref sizedarrays))
exts: *mut lysp_ext_instance< list of the extension instances ([sized array](@ref sizedarrays))
Trait Implementations§
Source§impl Clone for lysp_node_anydata__bindgen_ty_1__bindgen_ty_1
impl Clone for lysp_node_anydata__bindgen_ty_1__bindgen_ty_1
Source§fn clone(&self) -> lysp_node_anydata__bindgen_ty_1__bindgen_ty_1
fn clone(&self) -> lysp_node_anydata__bindgen_ty_1__bindgen_ty_1
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for lysp_node_anydata__bindgen_ty_1__bindgen_ty_1
Auto Trait Implementations§
impl !Send for lysp_node_anydata__bindgen_ty_1__bindgen_ty_1
impl !Sync for lysp_node_anydata__bindgen_ty_1__bindgen_ty_1
impl Freeze for lysp_node_anydata__bindgen_ty_1__bindgen_ty_1
impl RefUnwindSafe for lysp_node_anydata__bindgen_ty_1__bindgen_ty_1
impl Unpin for lysp_node_anydata__bindgen_ty_1__bindgen_ty_1
impl UnsafeUnpin for lysp_node_anydata__bindgen_ty_1__bindgen_ty_1
impl UnwindSafe for lysp_node_anydata__bindgen_ty_1__bindgen_ty_1
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more