#[repr(C)]pub struct lysp_node_container {
pub __bindgen_anon_1: lysp_node_container__bindgen_ty_1,
pub musts: *mut lysp_restr,
pub when: *mut lysp_when,
pub presence: *const c_char,
pub typedefs: *mut lysp_tpdf,
pub groupings: *mut lysp_node_grp,
pub child: *mut lysp_node,
pub actions: *mut lysp_node_action,
pub notifs: *mut lysp_node_notif,
}Expand description
@brief Extension structure of the lysp_node for YANG container
Fields§
§__bindgen_anon_1: lysp_node_container__bindgen_ty_1§musts: *mut lysp_restr< list of must restrictions ([sized array](@ref sizedarrays))
when: *mut lysp_when< when statement
presence: *const c_char< presence description
typedefs: *mut lysp_tpdf< list of typedefs ([sized array](@ref sizedarrays))
groupings: *mut lysp_node_grp< list of groupings (linked list)
child: *mut lysp_node< list of data nodes (linked list)
actions: *mut lysp_node_action< list of actions (linked list)
notifs: *mut lysp_node_notif< list of notifications (linked list)
Trait Implementations§
Source§impl Clone for lysp_node_container
impl Clone for lysp_node_container
Source§fn clone(&self) -> lysp_node_container
fn clone(&self) -> lysp_node_container
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_container
Auto Trait Implementations§
impl !Send for lysp_node_container
impl !Sync for lysp_node_container
impl Freeze for lysp_node_container
impl RefUnwindSafe for lysp_node_container
impl Unpin for lysp_node_container
impl UnsafeUnpin for lysp_node_container
impl UnwindSafe for lysp_node_container
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