pub enum OrchestratorError {
InvalidUrl,
DhcpFailed,
DhcpTimeout,
HttpFailed,
DiskError(DiskWriterError),
NetworkError,
ChecksumMismatch,
Cancelled,
InvalidState,
}Expand description
Orchestrator error types.
Variants§
InvalidUrl
Invalid URL.
DhcpFailed
DHCP failed.
DhcpTimeout
DHCP timed out.
HttpFailed
HTTP error.
DiskError(DiskWriterError)
Disk write error.
NetworkError
Network device error.
ChecksumMismatch
Checksum mismatch.
Cancelled
Operation cancelled.
InvalidState
Invalid state.
Trait Implementations§
Source§impl Clone for OrchestratorError
impl Clone for OrchestratorError
Source§fn clone(&self) -> OrchestratorError
fn clone(&self) -> OrchestratorError
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 OrchestratorError
impl Debug for OrchestratorError
Source§impl From<BlockError> for OrchestratorError
impl From<BlockError> for OrchestratorError
Source§fn from(e: BlockError) -> Self
fn from(e: BlockError) -> Self
Converts to this type from the input type.
Source§impl From<DiskWriterError> for OrchestratorError
impl From<DiskWriterError> for OrchestratorError
Source§fn from(e: DiskWriterError) -> Self
fn from(e: DiskWriterError) -> Self
Converts to this type from the input type.
impl Copy for OrchestratorError
Auto Trait Implementations§
impl Freeze for OrchestratorError
impl RefUnwindSafe for OrchestratorError
impl Send for OrchestratorError
impl Sync for OrchestratorError
impl Unpin for OrchestratorError
impl UnwindSafe for OrchestratorError
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