enum OrchestratorState {
Init,
WaitingForDhcp,
Connecting,
Streaming,
Flushing,
Verifying,
Done,
Failed,
}Expand description
Orchestrator state.
Variants§
Init
Initial state.
WaitingForDhcp
Waiting for DHCP.
Connecting
Connecting to HTTP server.
Streaming
Downloading and writing.
Flushing
Flushing remaining writes.
Verifying
Verifying (optional).
Done
Complete.
Failed
Failed.
Trait Implementations§
Source§impl Clone for OrchestratorState
impl Clone for OrchestratorState
Source§fn clone(&self) -> OrchestratorState
fn clone(&self) -> OrchestratorState
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 Debug for OrchestratorState
impl Debug for OrchestratorState
Source§impl PartialEq for OrchestratorState
impl PartialEq for OrchestratorState
impl Copy for OrchestratorState
impl Eq for OrchestratorState
impl StructuralPartialEq for OrchestratorState
Auto Trait Implementations§
impl Freeze for OrchestratorState
impl RefUnwindSafe for OrchestratorState
impl Send for OrchestratorState
impl Sync for OrchestratorState
impl Unpin for OrchestratorState
impl UnwindSafe for OrchestratorState
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