Struct springtime_di::scope::SingletonScope
source · 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 !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