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