#[repr(C)]pub struct lyd_node_inner {
pub __bindgen_anon_1: lyd_node_inner__bindgen_ty_1,
pub child: *mut lyd_node,
pub children_ht: *mut ly_ht,
}Expand description
@brief Data node structure for the inner data tree nodes - containers, lists, RPCs, actions and Notifications.
Fields§
§__bindgen_anon_1: lyd_node_inner__bindgen_ty_1§child: *mut lyd_node< pointer to the first child node.
children_ht: *mut ly_ht< hash table with all the direct children (except keys for a list, lists without keys)
Trait Implementations§
Source§impl Clone for lyd_node_inner
impl Clone for lyd_node_inner
Source§fn clone(&self) -> lyd_node_inner
fn clone(&self) -> lyd_node_inner
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 lyd_node_inner
Auto Trait Implementations§
impl !Send for lyd_node_inner
impl !Sync for lyd_node_inner
impl Freeze for lyd_node_inner
impl RefUnwindSafe for lyd_node_inner
impl Unpin for lyd_node_inner
impl UnsafeUnpin for lyd_node_inner
impl UnwindSafe for lyd_node_inner
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