pub enum FieldType {
Ip(&'static str),
Array(&'static str),
Text(&'static str),
Numeric(&'static str),
Decimal(&'static str),
Date(&'static str),
TextOptions(BTreeMap<&'static str, &'static str>, &'static str),
}Variants§
Ip(&'static str)
Save IP as text
Array(&'static str)
Text(&'static str)
A basic String field
Numeric(&'static str)
Signed number with 64 bits
Decimal(&'static str)
Decimal number with 64 bits
Date(&'static str)
Date Type
TextOptions(BTreeMap<&'static str, &'static str>, &'static str)
List of posible text values. This is like Text but with autocomplete help
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FieldType
impl RefUnwindSafe for FieldType
impl Send for FieldType
impl Sync for FieldType
impl Unpin for FieldType
impl UnwindSafe for FieldType
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