pub struct LabeledStatement {
pub label: Node<Label>,
pub statement: Box<Node<Statement>>,
}
Expand description
Labeled statement
(C11 6.8.1)
Fields§
§label: Node<Label>
§statement: Box<Node<Statement>>
Trait Implementations§
Source§impl Clone for LabeledStatement
impl Clone for LabeledStatement
Source§fn clone(&self) -> LabeledStatement
fn clone(&self) -> LabeledStatement
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 LabeledStatement
impl Debug for LabeledStatement
Source§impl PartialEq for LabeledStatement
impl PartialEq for LabeledStatement
impl StructuralPartialEq for LabeledStatement
Auto Trait Implementations§
impl Freeze for LabeledStatement
impl RefUnwindSafe for LabeledStatement
impl Send for LabeledStatement
impl Sync for LabeledStatement
impl Unpin for LabeledStatement
impl UnwindSafe for LabeledStatement
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