#[repr(C)]pub enum ColumnType {
Boolean = 0,
Varchar = 1,
Double = 2,
Integer = 3,
Geometry = 4,
}Expand description
Logical column types used by GeoPackage layers and DDL helpers.
Variants§
Boolean = 0
Boolean value stored as an integer 0/1.
Varchar = 1
UTF-8 text column.
Double = 2
Floating point column (SQLite REAL).
Integer = 3
Integer column (SQLite INTEGER).
Geometry = 4
Geometry column stored as a GeoPackage BLOB.
Trait Implementations§
Source§impl Clone for ColumnType
impl Clone for ColumnType
Source§fn clone(&self) -> ColumnType
fn clone(&self) -> ColumnType
Returns a duplicate 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 ColumnType
impl Debug for ColumnType
Source§impl PartialEq for ColumnType
impl PartialEq for ColumnType
impl Copy for ColumnType
impl StructuralPartialEq for ColumnType
Auto Trait Implementations§
impl Freeze for ColumnType
impl RefUnwindSafe for ColumnType
impl Send for ColumnType
impl Sync for ColumnType
impl Unpin for ColumnType
impl UnwindSafe for ColumnType
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