pub struct LiteralExpression {
pub span: Span,
pub value: String,
pub literal_expression_type: LiteralType,
}
Fields§
§span: Span
§value: String
§literal_expression_type: LiteralType
Trait Implementations§
Source§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 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