pub struct ColumnDef {
pub column_id: u32,
pub name: String,
pub coltyp: u8,
}Expand description
A column definition from the ESE catalog.
Fields§
§column_id: u321-based column identifier (matches ESE catalog column_id).
name: StringHuman-readable column name.
coltyp: u8JET column type code (see coltyp constants).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ColumnDef
impl RefUnwindSafe for ColumnDef
impl Send for ColumnDef
impl Sync for ColumnDef
impl Unpin for ColumnDef
impl UnsafeUnpin for ColumnDef
impl UnwindSafe for ColumnDef
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