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