pub struct ContextInitializedEvent {
pub config_sources_count: usize,
pub timestamp: SystemTime,
}Expand description
Event fired when the application context is initialized
This event is published after the context has been fully initialized, including all configuration sources and the IoC container.
Fields§
§config_sources_count: usizeNumber of configuration sources loaded
timestamp: SystemTimeInitialization timestamp
Trait Implementations§
Source§impl Clone for ContextInitializedEvent
impl Clone for ContextInitializedEvent
Source§fn clone(&self) -> ContextInitializedEvent
fn clone(&self) -> ContextInitializedEvent
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 moreSource§impl Debug for ContextInitializedEvent
impl Debug for ContextInitializedEvent
Source§impl Event for ContextInitializedEvent
impl Event for ContextInitializedEvent
Auto Trait Implementations§
impl Freeze for ContextInitializedEvent
impl RefUnwindSafe for ContextInitializedEvent
impl Send for ContextInitializedEvent
impl Sync for ContextInitializedEvent
impl Unpin for ContextInitializedEvent
impl UnsafeUnpin for ContextInitializedEvent
impl UnwindSafe for ContextInitializedEvent
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