#[repr(C)]pub struct PLpgSQL_row {
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 rowtupdesc: TupleDesc,
pub nfields: c_int,
pub fieldnames: *mut *mut c_char,
pub varnos: *mut c_int,
}
Fields§
§dtype: Type
§dno: c_int
§refname: *mut c_char
§lineno: c_int
§isconst: bool
§notnull: bool
§default_val: *mut PLpgSQL_expr
§rowtupdesc: TupleDesc
§nfields: c_int
§fieldnames: *mut *mut c_char
§varnos: *mut c_int
Trait Implementations§
Source§impl Clone for PLpgSQL_row
impl Clone for PLpgSQL_row
Source§fn clone(&self) -> PLpgSQL_row
fn clone(&self) -> PLpgSQL_row
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_row
impl Debug for PLpgSQL_row
Source§impl Default for PLpgSQL_row
impl Default for PLpgSQL_row
impl Copy for PLpgSQL_row
Auto Trait Implementations§
impl Freeze for PLpgSQL_row
impl RefUnwindSafe for PLpgSQL_row
impl !Send for PLpgSQL_row
impl !Sync for PLpgSQL_row
impl Unpin for PLpgSQL_row
impl UnwindSafe for PLpgSQL_row
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