1 2 3 4 5 6 7 8 9
use super::*; pub struct Id; impl Id { pub fn handle(id: u64, ops: Option<HandleOptions>) -> Handle { // TODO: should prevent overrride the ROOT_HANDLE Handle::global().nest(id, ops) } }