(&self, value: &[u8])
| 403 | self.0.ctx.new_str(value).into() |
| 404 | } |
| 405 | fn make_bytes(&self, value: &[u8]) -> Self::Value { |
| 406 | self.0.ctx.new_bytes(value.to_vec()).into() |
| 407 | } |
| 408 | fn make_int(&self, value: BigInt) -> Self::Value { |
| 409 | self.0.ctx.new_int(value).into() |
| 410 | } |