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: boolIs part of the key?
name: StringName of the column.
oid: i32OID of the column’s data type.
type_modifier: i32Type 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