pub struct Open<T> {
pub root: Arc<dyn Node>,
pub link: Arc<T>,
pub state: RwLock<State>,
pub write: bool,
pub read: bool,
}
Fields§
§root: Arc<dyn Node>
§link: Arc<T>
§state: RwLock<State>
§write: bool
§read: bool
Auto Trait Implementations§
impl<T> !Freeze for Open<T>
impl<T> !RefUnwindSafe for Open<T>
impl<T> Send for Open<T>
impl<T> Sync for Open<T>
impl<T> Unpin for Open<T>
impl<T> !UnwindSafe for Open<T>
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