pub enum RuntimeError {
FeedNotFound {
feed_id: FeedId,
},
AlreadyRunning,
AlreadyPaused,
NotPaused,
ShutdownInProgress,
FeedLimitExceeded {
max: usize,
},
RegistryPoisoned,
ThreadSpawnFailed {
detail: String,
},
}Expand description
Errors from the runtime/orchestration layer.
Variants§
FeedNotFound
The specified feed was not found.
AlreadyRunning
The runtime is already running.
AlreadyPaused
The feed is already paused.
NotPaused
The feed is not paused.
ShutdownInProgress
Shutdown is in progress; new operations are rejected.
FeedLimitExceeded
The maximum number of concurrent feeds has been reached.
RegistryPoisoned
An internal lock is poisoned (a thread panicked while holding it).
ThreadSpawnFailed
Failed to spawn a feed worker thread.
Trait Implementations§
Source§impl Debug for RuntimeError
impl Debug for RuntimeError
Source§impl Display for RuntimeError
impl Display for RuntimeError
Source§impl Error for RuntimeError
impl Error for RuntimeError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<RuntimeError> for NvError
impl From<RuntimeError> for NvError
Source§fn from(source: RuntimeError) -> Self
fn from(source: RuntimeError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RuntimeError
impl RefUnwindSafe for RuntimeError
impl Send for RuntimeError
impl Sync for RuntimeError
impl Unpin for RuntimeError
impl UnsafeUnpin for RuntimeError
impl UnwindSafe for RuntimeError
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