pub enum ReloadEvent {
ReloadStarted {
plugin_id: String,
path: PathBuf,
},
ReloadCompleted {
plugin_id: String,
path: PathBuf,
success: bool,
duration: Duration,
},
ReloadFailed {
plugin_id: String,
path: PathBuf,
error: String,
attempt: u32,
},
RollbackTriggered {
plugin_id: String,
reason: String,
},
PluginDiscovered {
path: PathBuf,
},
PluginRemoved {
plugin_id: String,
path: PathBuf,
},
StatePreserved {
plugin_id: String,
},
StateRestored {
plugin_id: String,
},
}Expand description
热加载事件
Variants§
ReloadStarted
热加载开始
ReloadCompleted
热加载完成
ReloadFailed
热加载失败
RollbackTriggered
回滚已触发
PluginDiscovered
插件已发现
PluginRemoved
插件已移除
StatePreserved
插件状态已保存
StateRestored
插件状态已恢复
Trait Implementations§
Source§impl Clone for ReloadEvent
impl Clone for ReloadEvent
Source§fn clone(&self) -> ReloadEvent
fn clone(&self) -> ReloadEvent
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 ReloadEvent
impl RefUnwindSafe for ReloadEvent
impl Send for ReloadEvent
impl Sync for ReloadEvent
impl Unpin for ReloadEvent
impl UnsafeUnpin for ReloadEvent
impl UnwindSafe for ReloadEvent
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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