#[repr(C)]pub struct oconfig_item_s {
pub key: *mut c_char,
pub values: *mut oconfig_value_t,
pub values_num: c_int,
pub parent: *mut oconfig_item_t,
pub children: *mut oconfig_item_t,
pub children_num: c_int,
}Fields§
§key: *mut c_char§values: *mut oconfig_value_t§values_num: c_int§parent: *mut oconfig_item_t§children: *mut oconfig_item_t§children_num: c_intTrait Implementations§
Source§impl Clone for oconfig_item_s
impl Clone for oconfig_item_s
Source§fn clone(&self) -> oconfig_item_s
fn clone(&self) -> oconfig_item_s
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for oconfig_item_s
impl Debug for oconfig_item_s
impl Copy for oconfig_item_s
Auto Trait Implementations§
impl Freeze for oconfig_item_s
impl RefUnwindSafe for oconfig_item_s
impl !Send for oconfig_item_s
impl !Sync for oconfig_item_s
impl Unpin for oconfig_item_s
impl UnwindSafe for oconfig_item_s
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