pub struct Lambda {
pub param: String,
pub param_type: String,
pub body: Node,
}Expand description
A stored lambda definition (param name, param type, body).
Fields§
§param: String§param_type: String§body: NodeTrait Implementations§
Auto Trait Implementations§
impl Freeze for Lambda
impl RefUnwindSafe for Lambda
impl Send for Lambda
impl Sync for Lambda
impl Unpin for Lambda
impl UnsafeUnpin for Lambda
impl UnwindSafe for Lambda
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