pub struct ContainerInfo {
pub is_built: bool,
pub service_count: usize,
pub singleton_count: usize,
pub scoped_count: usize,
pub transient_count: usize,
pub cached_instances: usize,
pub registered_services: Vec<String>,
}
Expand description
Container information for inspection
Fields§
§is_built: bool
§service_count: usize
§singleton_count: usize
§scoped_count: usize
§transient_count: usize
§cached_instances: usize
§registered_services: Vec<String>
Trait Implementations§
Source§impl Clone for ContainerInfo
impl Clone for ContainerInfo
Source§fn clone(&self) -> ContainerInfo
fn clone(&self) -> ContainerInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for ContainerInfo
impl RefUnwindSafe for ContainerInfo
impl Send for ContainerInfo
impl Sync for ContainerInfo
impl Unpin for ContainerInfo
impl UnwindSafe for ContainerInfo
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