pub struct RootSend {
pub owned: BTreeMap<&'static str, Box<dyn Access + Send>>,
}Expand description
Holds a root dictionary of Send-able trait objects that implement Access and are therefore
Interact-able. These are most likely objects that are held globally behind an Arc.
Fields§
§owned: BTreeMap<&'static str, Box<dyn Access + Send>>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RootSend
impl !RefUnwindSafe for RootSend
impl Send for RootSend
impl !Sync for RootSend
impl Unpin for RootSend
impl !UnwindSafe for RootSend
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