pub struct LambdaFunction {
pub params: Vec<Parameter>,
pub body: Box<dyn Any + Send + Sync>,
pub closure: Option<Arc<dyn Any + Send + Sync>>,
}Fields§
§params: Vec<Parameter>§body: Box<dyn Any + Send + Sync>§closure: Option<Arc<dyn Any + Send + Sync>>Trait Implementations§
Auto Trait Implementations§
impl Freeze for LambdaFunction
impl !RefUnwindSafe for LambdaFunction
impl Send for LambdaFunction
impl Sync for LambdaFunction
impl Unpin for LambdaFunction
impl !UnwindSafe for LambdaFunction
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