Struct pgrx_pg_sys::ConfigVariable
source · #[repr(C)]pub struct ConfigVariable {
pub name: *mut c_char,
pub value: *mut c_char,
pub errmsg: *mut c_char,
pub filename: *mut c_char,
pub sourceline: c_int,
pub ignore: bool,
pub applied: bool,
pub next: *mut ConfigVariable,
}
Fields§
§name: *mut c_char
§value: *mut c_char
§errmsg: *mut c_char
§filename: *mut c_char
§sourceline: c_int
§ignore: bool
§applied: bool
§next: *mut ConfigVariable
Trait Implementations§
source§impl Clone for ConfigVariable
impl Clone for ConfigVariable
source§fn clone(&self) -> ConfigVariable
fn clone(&self) -> ConfigVariable
Returns a copy 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 moresource§impl Debug for ConfigVariable
impl Debug for ConfigVariable
source§impl Default for ConfigVariable
impl Default for ConfigVariable
impl Copy for ConfigVariable
Auto Trait Implementations§
impl Freeze for ConfigVariable
impl RefUnwindSafe for ConfigVariable
impl !Send for ConfigVariable
impl !Sync for ConfigVariable
impl Unpin for ConfigVariable
impl UnwindSafe for ConfigVariable
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