pub enum ReloadPolicy {
OnChange,
OnSignal,
Scheduled {
interval_ms: u64,
},
Disabled,
}Expand description
When should the HotReloadManager attempt to reload a changed plugin?
Variants§
OnChange
Reload as soon as a content change is detected.
OnSignal
Reload only when explicitly triggered by a signal or API call.
Scheduled
Reload on a fixed schedule (millisecond interval).
Disabled
Hot-reload is disabled; plugins are only loaded once.
Trait Implementations§
Source§impl Clone for ReloadPolicy
impl Clone for ReloadPolicy
Source§fn clone(&self) -> ReloadPolicy
fn clone(&self) -> ReloadPolicy
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 ReloadPolicy
impl Debug for ReloadPolicy
Source§impl PartialEq for ReloadPolicy
impl PartialEq for ReloadPolicy
impl Eq for ReloadPolicy
impl StructuralPartialEq for ReloadPolicy
Auto Trait Implementations§
impl Freeze for ReloadPolicy
impl RefUnwindSafe for ReloadPolicy
impl Send for ReloadPolicy
impl Sync for ReloadPolicy
impl Unpin for ReloadPolicy
impl UnsafeUnpin for ReloadPolicy
impl UnwindSafe for ReloadPolicy
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