pub struct YieldExpression {
pub argument: Option<Box<Expression>>,
pub delegate: bool,
}Fields§
§argument: Option<Box<Expression>>§delegate: boolTrait Implementations§
Source§impl Clone for YieldExpression
impl Clone for YieldExpression
Source§fn clone(&self) -> YieldExpression
fn clone(&self) -> YieldExpression
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 YieldExpression
impl RefUnwindSafe for YieldExpression
impl Send for YieldExpression
impl Sync for YieldExpression
impl Unpin for YieldExpression
impl UnsafeUnpin for YieldExpression
impl UnwindSafe for YieldExpression
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