pub struct UnaryExpression {
pub span: Span,
pub operator: UnaryOperatorType,
pub expression: Box<Expression>,
}
Fields§
§span: Span
§operator: UnaryOperatorType
§expression: Box<Expression>
Trait Implementations§
Source§impl Debug for UnaryExpression
impl Debug for UnaryExpression
Source§impl<'de> Deserialize<'de> for UnaryExpression
impl<'de> Deserialize<'de> for UnaryExpression
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 UnaryExpression
impl PartialEq for UnaryExpression
Source§impl Serialize for UnaryExpression
impl Serialize for UnaryExpression
impl Eq for UnaryExpression
impl StructuralPartialEq for UnaryExpression
Auto Trait Implementations§
impl Freeze for UnaryExpression
impl RefUnwindSafe for UnaryExpression
impl Send for UnaryExpression
impl Sync for UnaryExpression
impl Unpin for UnaryExpression
impl UnwindSafe for UnaryExpression
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