pub enum FieldDefinitionExpression {
All,
AllInTable(String),
Col(Column),
Value(FieldValueExpression),
}
Variants§
Trait Implementations§
Source§impl Clone for FieldDefinitionExpression
impl Clone for FieldDefinitionExpression
Source§fn clone(&self) -> FieldDefinitionExpression
fn clone(&self) -> FieldDefinitionExpression
Returns a copy 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 FieldDefinitionExpression
impl Debug for FieldDefinitionExpression
Source§impl Default for FieldDefinitionExpression
impl Default for FieldDefinitionExpression
Source§fn default() -> FieldDefinitionExpression
fn default() -> FieldDefinitionExpression
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FieldDefinitionExpression
impl<'de> Deserialize<'de> for FieldDefinitionExpression
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
Source§impl Display for FieldDefinitionExpression
impl Display for FieldDefinitionExpression
Source§impl Hash for FieldDefinitionExpression
impl Hash for FieldDefinitionExpression
impl Eq for FieldDefinitionExpression
impl StructuralPartialEq for FieldDefinitionExpression
Auto Trait Implementations§
impl Freeze for FieldDefinitionExpression
impl RefUnwindSafe for FieldDefinitionExpression
impl Send for FieldDefinitionExpression
impl Sync for FieldDefinitionExpression
impl Unpin for FieldDefinitionExpression
impl UnwindSafe for FieldDefinitionExpression
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