use rebound::Value; fn main() { let mut v = Value::from(1); let v2 = v.as_mut() .unwrap(); v.borrow_mut::(); println!("{:p}", v2); }