pub trait Function: Send + Sync { // Required method fn call(&self, this: Value, arguments: Arguments) -> Result<Value>; }