pub struct LabeledExpression {
pub label: String,
pub expr: Box<Expression>,
}
Fields§
§label: String
§expr: Box<Expression>
Trait Implementations§
Source§impl Clone for LabeledExpression
impl Clone for LabeledExpression
Source§fn clone(&self) -> LabeledExpression
fn clone(&self) -> LabeledExpression
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 LabeledExpression
impl Debug for LabeledExpression
Source§impl PartialEq for LabeledExpression
impl PartialEq for LabeledExpression
impl StructuralPartialEq for LabeledExpression
Auto Trait Implementations§
impl Freeze for LabeledExpression
impl RefUnwindSafe for LabeledExpression
impl Send for LabeledExpression
impl Sync for LabeledExpression
impl Unpin for LabeledExpression
impl UnwindSafe for LabeledExpression
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