pub struct RootScope<C>where
C: AsContextMut,{ /* private fields */ }
Expand description
This type has been disabled because the gc
cargo feature was not enabled
at compile time.
Implementations§
Trait Implementations§
source§impl<T> AsContext for RootScope<T>where
T: AsContextMut,
impl<T> AsContext for RootScope<T>where
T: AsContextMut,
source§impl<T> AsContextMut for RootScope<T>where
T: AsContextMut,
impl<T> AsContextMut for RootScope<T>where
T: AsContextMut,
source§fn as_context_mut(&mut self) -> StoreContextMut<'_, Self::Data>
fn as_context_mut(&mut self) -> StoreContextMut<'_, Self::Data>
Returns the store context that this type provides access to.
Auto Trait Implementations§
impl<C> Freeze for RootScope<C>
impl<C> RefUnwindSafe for RootScope<C>where
C: RefUnwindSafe,
impl<C> Send for RootScope<C>where
C: Send,
impl<C> Sync for RootScope<C>where
C: Sync,
impl<C> Unpin for RootScope<C>where
C: Unpin,
impl<C> UnwindSafe for RootScope<C>where
C: UnwindSafe,
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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more