#[repr(C)]pub struct uci_package {
pub e: uci_element,
pub sections: uci_list,
pub ctx: *mut uci_context,
pub has_delta: bool,
pub path: *mut c_char,
pub backend: *mut uci_backend,
pub priv_: *mut c_void,
pub n_section: c_int,
pub delta: uci_list,
pub saved_delta: uci_list,
}Fields§
§e: uci_element§sections: uci_list§ctx: *mut uci_context§has_delta: bool§path: *mut c_char§backend: *mut uci_backend§priv_: *mut c_void§n_section: c_int§delta: uci_list§saved_delta: uci_listTrait Implementations§
Source§impl Clone for uci_package
impl Clone for uci_package
Source§fn clone(&self) -> uci_package
fn clone(&self) -> uci_package
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 uci_package
impl Debug for uci_package
impl Copy for uci_package
Auto Trait Implementations§
impl Freeze for uci_package
impl RefUnwindSafe for uci_package
impl !Send for uci_package
impl !Sync for uci_package
impl Unpin for uci_package
impl UnwindSafe for uci_package
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