Struct pgrx_pg_sys::PLpgSQL_var
source · #[repr(C)]pub struct PLpgSQL_var {Show 15 fields
pub dtype: PLpgSQL_datum_type,
pub dno: c_int,
pub refname: *mut c_char,
pub lineno: c_int,
pub isconst: bool,
pub notnull: bool,
pub default_val: *mut PLpgSQL_expr,
pub datatype: *mut PLpgSQL_type,
pub cursor_explicit_expr: *mut PLpgSQL_expr,
pub cursor_explicit_argrow: c_int,
pub cursor_options: c_int,
pub value: Datum,
pub isnull: bool,
pub freeval: bool,
pub promise: PLpgSQL_promise_type,
}
Fields§
§dtype: PLpgSQL_datum_type
§dno: c_int
§refname: *mut c_char
§lineno: c_int
§isconst: bool
§notnull: bool
§default_val: *mut PLpgSQL_expr
§datatype: *mut PLpgSQL_type
§cursor_explicit_expr: *mut PLpgSQL_expr
§cursor_explicit_argrow: c_int
§cursor_options: c_int
§value: Datum
§isnull: bool
§freeval: bool
§promise: PLpgSQL_promise_type
Trait Implementations§
source§impl Clone for PLpgSQL_var
impl Clone for PLpgSQL_var
source§fn clone(&self) -> PLpgSQL_var
fn clone(&self) -> PLpgSQL_var
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 PLpgSQL_var
impl Debug for PLpgSQL_var
source§impl Default for PLpgSQL_var
impl Default for PLpgSQL_var
impl Copy for PLpgSQL_var
Auto Trait Implementations§
impl RefUnwindSafe for PLpgSQL_var
impl !Send for PLpgSQL_var
impl !Sync for PLpgSQL_var
impl Unpin for PLpgSQL_var
impl UnwindSafe for PLpgSQL_var
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