pub struct RelationMessageColumn {
pub is_part_of_the_key: bool,
pub name: String,
pub oid: i32,
pub type_modifier: i32,
}
Fields§
§is_part_of_the_key: bool
Is part of the key?
name: String
Name of the column.
oid: i32
OID of the column’s data type.
type_modifier: i32
Type modifier of the column (atttypmod
).
Auto Trait Implementations§
impl Freeze for RelationMessageColumn
impl RefUnwindSafe for RelationMessageColumn
impl Send for RelationMessageColumn
impl Sync for RelationMessageColumn
impl Unpin for RelationMessageColumn
impl UnwindSafe for RelationMessageColumn
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