pub struct GraphInner { /* private fields */ }Expand description
Inner namespace + mount-tree state for one graph level. D246: holds
no Core — purely the named namespace, the mounted children,
and the namespace-change sinks. D246/S2c/D247: single-owner ⇒
Rc<RefCell<GraphInner>> (the prior Arc<Mutex<…>> was
shared-Core-era legacy); the shareable-handle + parent-Weak cycle
stays, single-threaded.
Auto Trait Implementations§
impl Freeze for GraphInner
impl !RefUnwindSafe for GraphInner
impl !Send for GraphInner
impl !Sync for GraphInner
impl Unpin for GraphInner
impl UnsafeUnpin for GraphInner
impl !UnwindSafe for GraphInner
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