#[repr(C)]pub struct PLpgSQL_var {Show 15 fields
pub dtype: 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: Type,
}Fields§
§dtype: 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: TypeTrait 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 duplicate 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 Freeze for PLpgSQL_var
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