pub struct ClassExpression {
pub id: Option<Box<Node>>,
pub super_class: Option<Box<Node>>,
pub body: Box<Node>,
pub span: Option<Span>,
}Fields§
§id: Option<Box<Node>>§super_class: Option<Box<Node>>§body: Box<Node>§span: Option<Span>Trait Implementations§
Source§impl Clone for ClassExpression
impl Clone for ClassExpression
Source§fn clone(&self) -> ClassExpression
fn clone(&self) -> ClassExpression
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 ClassExpression
impl Debug for ClassExpression
Source§impl<'de> Deserialize<'de> for ClassExpression
impl<'de> Deserialize<'de> for ClassExpression
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 ClassExpression
impl PartialEq for ClassExpression
Source§impl Serialize for ClassExpression
impl Serialize for ClassExpression
impl StructuralPartialEq for ClassExpression
Auto Trait Implementations§
impl Freeze for ClassExpression
impl RefUnwindSafe for ClassExpression
impl Send for ClassExpression
impl Sync for ClassExpression
impl Unpin for ClassExpression
impl UnwindSafe for ClassExpression
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