pub struct LabelledStatement {
pub label: String,
pub body: Box<ASTNode>,
}Fields§
§label: String§body: Box<ASTNode>Trait Implementations§
Source§impl Clone for LabelledStatement
impl Clone for LabelledStatement
Source§fn clone(&self) -> LabelledStatement
fn clone(&self) -> LabelledStatement
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for LabelledStatement
impl RefUnwindSafe for LabelledStatement
impl Send for LabelledStatement
impl Sync for LabelledStatement
impl Unpin for LabelledStatement
impl UnsafeUnpin for LabelledStatement
impl UnwindSafe for LabelledStatement
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