pub enum ReloadState {
None,
Building,
Available,
}
Expand description
Query reload status with a responder: if
Variants§
None
No action needs taking
Building
Changes detected build has triggered
Available
There is a reload available, get into a stable state and call complete_reload
to complete
Trait Implementations§
Source§impl Clone for ReloadState
impl Clone for ReloadState
Source§fn clone(&self) -> ReloadState
fn clone(&self) -> ReloadState
Returns a copy 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 PartialEq for ReloadState
impl PartialEq for ReloadState
impl Copy for ReloadState
impl StructuralPartialEq for ReloadState
Auto Trait Implementations§
impl Freeze for ReloadState
impl RefUnwindSafe for ReloadState
impl Send for ReloadState
impl Sync for ReloadState
impl Unpin for ReloadState
impl UnwindSafe for ReloadState
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