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