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