pub struct SingletonScope { /* private fields */ }
Expand description
Scope for instances shared between components. Stateless components are good candidates to be stored in the singleton scope.
Trait Implementations§
Source§impl Default for SingletonScope
impl Default for SingletonScope
Source§fn default() -> SingletonScope
fn default() -> SingletonScope
Returns the “default value” for a type. Read more
Source§impl Scope for SingletonScope
impl Scope for SingletonScope
Source§fn instance(
&self,
definition: &ComponentDefinition,
) -> Option<ComponentInstanceAnyPtr>
fn instance( &self, definition: &ComponentDefinition, ) -> Option<ComponentInstanceAnyPtr>
Gets an instance requested for the given definition, if available in this scope.
Source§fn store_instance(
&mut self,
definition: &ComponentDefinition,
instance: ComponentInstanceAnyPtr,
)
fn store_instance( &mut self, definition: &ComponentDefinition, instance: ComponentInstanceAnyPtr, )
Stores given instance in the scope. The scope might not support storing instances and ignore
it.
Auto Trait Implementations§
impl Freeze for SingletonScope
impl !RefUnwindSafe for SingletonScope
impl Send for SingletonScope
impl Sync for SingletonScope
impl Unpin for SingletonScope
impl !UnwindSafe for SingletonScope
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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