#[repr(C)]
pub union config_value_t {
pub ival: c_int,
pub llval: c_longlong,
pub fval: c_double,
pub sval: *mut c_schar,
pub list: *mut config_list_t,
}Fields§
§ival: c_int§llval: c_longlong§fval: c_double§sval: *mut c_schar§list: *mut config_list_tTrait Implementations§
Source§impl Clone for config_value_t
impl Clone for config_value_t
Source§fn clone(&self) -> config_value_t
fn clone(&self) -> config_value_t
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 moreimpl Copy for config_value_t
Auto Trait Implementations§
impl Freeze for config_value_t
impl RefUnwindSafe for config_value_t
impl !Send for config_value_t
impl !Sync for config_value_t
impl Unpin for config_value_t
impl UnwindSafe for config_value_t
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