#[repr(C)]pub struct config_real {
pub gen_: config_generic,
pub variable: *mut f64,
pub boot_val: f64,
pub min: f64,
pub max: f64,
pub check_hook: GucRealCheckHook,
pub assign_hook: GucRealAssignHook,
pub show_hook: GucShowHook,
pub reset_val: f64,
pub reset_extra: *mut c_void,
}Fields§
§gen_: config_generic§variable: *mut f64§boot_val: f64§min: f64§max: f64§check_hook: GucRealCheckHook§assign_hook: GucRealAssignHook§show_hook: GucShowHook§reset_val: f64§reset_extra: *mut c_voidTrait Implementations§
Source§impl Clone for config_real
impl Clone for config_real
Source§fn clone(&self) -> config_real
fn clone(&self) -> config_real
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 config_real
Source§impl Debug for config_real
impl Debug for config_real
Auto Trait Implementations§
impl !Send for config_real
impl !Sync for config_real
impl Freeze for config_real
impl RefUnwindSafe for config_real
impl Unpin for config_real
impl UnsafeUnpin for config_real
impl UnwindSafe for config_real
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