pub struct FieldIR {
pub name: String,
pub field_type: FieldType,
pub nullable: bool,
pub default_value: Option<Value>,
pub unique: bool,
pub primary_key: bool,
}
Fields§
§name: String
§field_type: FieldType
§nullable: bool
§default_value: Option<Value>
§unique: bool
§primary_key: bool
Trait Implementations§
Source§impl<'de> Deserialize<'de> for FieldIR
impl<'de> Deserialize<'de> for FieldIR
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for FieldIR
Auto Trait Implementations§
impl Freeze for FieldIR
impl RefUnwindSafe for FieldIR
impl Send for FieldIR
impl Sync for FieldIR
impl Unpin for FieldIR
impl UnwindSafe for FieldIR
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