pub struct LiteralExpression {
pub value: Literal,
pub alias: Option<String>,
}
Fields§
§value: Literal
§alias: Option<String>
Trait Implementations§
Source§impl Clone for LiteralExpression
impl Clone for LiteralExpression
Source§fn clone(&self) -> LiteralExpression
fn clone(&self) -> LiteralExpression
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 LiteralExpression
impl Debug for LiteralExpression
Source§impl<'de> Deserialize<'de> for LiteralExpression
impl<'de> Deserialize<'de> for LiteralExpression
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 LiteralExpression
impl Display for LiteralExpression
Source§impl From<Literal> for LiteralExpression
impl From<Literal> for LiteralExpression
Source§impl Hash for LiteralExpression
impl Hash for LiteralExpression
Source§impl PartialEq for LiteralExpression
impl PartialEq for LiteralExpression
Source§impl Serialize for LiteralExpression
impl Serialize for LiteralExpression
impl Eq for LiteralExpression
impl StructuralPartialEq for LiteralExpression
Auto Trait Implementations§
impl Freeze for LiteralExpression
impl RefUnwindSafe for LiteralExpression
impl Send for LiteralExpression
impl Sync for LiteralExpression
impl Unpin for LiteralExpression
impl UnwindSafe for LiteralExpression
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