pub struct CodaFunction {
pub params: Vec<String>,
pub body: Vec<Stmt>,
pub closure: Rc<RefCell<Env>>,
}Fields§
§params: Vec<String>§body: Vec<Stmt>§closure: Rc<RefCell<Env>>Implementations§
Source§impl CodaFunction
impl CodaFunction
Auto Trait Implementations§
impl Freeze for CodaFunction
impl !RefUnwindSafe for CodaFunction
impl !Send for CodaFunction
impl !Sync for CodaFunction
impl Unpin for CodaFunction
impl UnsafeUnpin for CodaFunction
impl !UnwindSafe for CodaFunction
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