pub enum ColumnOrLiteral {
Column(Column),
Literal(Literal),
}
Variants§
Trait Implementations§
Source§impl Clone for ColumnOrLiteral
impl Clone for ColumnOrLiteral
Source§fn clone(&self) -> ColumnOrLiteral
fn clone(&self) -> ColumnOrLiteral
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 ColumnOrLiteral
impl Debug for ColumnOrLiteral
Source§impl<'de> Deserialize<'de> for ColumnOrLiteral
impl<'de> Deserialize<'de> for ColumnOrLiteral
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 ColumnOrLiteral
impl Display for ColumnOrLiteral
Source§impl Hash for ColumnOrLiteral
impl Hash for ColumnOrLiteral
Source§impl PartialEq for ColumnOrLiteral
impl PartialEq for ColumnOrLiteral
Source§impl Serialize for ColumnOrLiteral
impl Serialize for ColumnOrLiteral
impl Eq for ColumnOrLiteral
impl StructuralPartialEq for ColumnOrLiteral
Auto Trait Implementations§
impl Freeze for ColumnOrLiteral
impl RefUnwindSafe for ColumnOrLiteral
impl Send for ColumnOrLiteral
impl Sync for ColumnOrLiteral
impl Unpin for ColumnOrLiteral
impl UnwindSafe for ColumnOrLiteral
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