#[repr(C)]pub struct PLpgSQL_type {
pub typname: *mut c_char,
pub typoid: Oid,
pub ttype: Type,
pub typlen: int16,
pub typbyval: bool,
pub typtype: c_char,
pub collation: Oid,
pub typisarray: bool,
pub atttypmod: int32,
pub origtypname: *mut TypeName,
pub tcache: *mut TypeCacheEntry,
pub tupdesc_id: uint64,
}
Expand description
Node and structure definitions
Fields§
§typname: *mut c_char
§typoid: Oid
§ttype: Type
§typlen: int16
§typbyval: bool
§typtype: c_char
§collation: Oid
§typisarray: bool
§atttypmod: int32
§origtypname: *mut TypeName
§tcache: *mut TypeCacheEntry
§tupdesc_id: uint64
Trait Implementations§
Source§impl Clone for PLpgSQL_type
impl Clone for PLpgSQL_type
Source§fn clone(&self) -> PLpgSQL_type
fn clone(&self) -> PLpgSQL_type
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_type
impl Debug for PLpgSQL_type
Source§impl Default for PLpgSQL_type
impl Default for PLpgSQL_type
impl Copy for PLpgSQL_type
Auto Trait Implementations§
impl Freeze for PLpgSQL_type
impl RefUnwindSafe for PLpgSQL_type
impl !Send for PLpgSQL_type
impl !Sync for PLpgSQL_type
impl Unpin for PLpgSQL_type
impl UnwindSafe for PLpgSQL_type
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