#[repr(C)]pub struct lysp_node_grp__bindgen_ty_1__bindgen_ty_1 {
pub parent: *mut lysp_node,
pub nodetype: u16,
pub flags: u16,
pub next: *mut lysp_node_grp,
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 grouping)
nodetype: u16< LYS_GROUPING
flags: u16< [schema node flags](@ref snodeflags) - only LYS_STATUS_* values are allowed
next: *mut lysp_node_grp< pointer to the next grouping (NULL if there is no one)
name: *const c_char< grouping name (mandatory)
dsc: *const c_char< description statement
ref_: *const c_char< reference statement
iffeatures: *mut lysp_qname< ALWAYS NULL, compatibility member with ::lysp_node
exts: *mut lysp_ext_instance< list of the extension instances ([sized array](@ref sizedarrays))
Trait Implementations§
Source§impl Clone for lysp_node_grp__bindgen_ty_1__bindgen_ty_1
impl Clone for lysp_node_grp__bindgen_ty_1__bindgen_ty_1
Source§fn clone(&self) -> lysp_node_grp__bindgen_ty_1__bindgen_ty_1
fn clone(&self) -> lysp_node_grp__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_grp__bindgen_ty_1__bindgen_ty_1
Auto Trait Implementations§
impl !Send for lysp_node_grp__bindgen_ty_1__bindgen_ty_1
impl !Sync for lysp_node_grp__bindgen_ty_1__bindgen_ty_1
impl Freeze for lysp_node_grp__bindgen_ty_1__bindgen_ty_1
impl RefUnwindSafe for lysp_node_grp__bindgen_ty_1__bindgen_ty_1
impl Unpin for lysp_node_grp__bindgen_ty_1__bindgen_ty_1
impl UnsafeUnpin for lysp_node_grp__bindgen_ty_1__bindgen_ty_1
impl UnwindSafe for lysp_node_grp__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