pub struct ClassStatement {
pub class_name: Identifier,
pub class_body: String,
pub export: bool,
}
Fields§
§class_name: Identifier
§class_body: String
§export: bool
Trait Implementations§
Source§impl Clone for ClassStatement
impl Clone for ClassStatement
Source§fn clone(&self) -> ClassStatement
fn clone(&self) -> ClassStatement
Returns a duplicate 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 ClassStatement
impl Debug for ClassStatement
Source§impl PartialEq for ClassStatement
impl PartialEq for ClassStatement
impl StructuralPartialEq for ClassStatement
Auto Trait Implementations§
impl Freeze for ClassStatement
impl RefUnwindSafe for ClassStatement
impl Send for ClassStatement
impl Sync for ClassStatement
impl Unpin for ClassStatement
impl UnwindSafe for ClassStatement
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