pub enum RuntimeConfigurationError {
Environment(EnvError),
Paths(PathError),
Network(NetworkConfigError),
NetworkRuntime(NetworkRuntimeError),
Agent(AgentRuntimeConfigError),
Retrieval(RetrievalRuntimeConfigError),
Workers(WorkerRuntimeConfigError),
FileIndex(FileIndexRuntimeConfigError),
Updates(UpdateRuntimeConfigError),
}Expand description
Error raised while composing foundational runtime configuration.
Variants§
Environment(EnvError)
Paths(PathError)
Network(NetworkConfigError)
NetworkRuntime(NetworkRuntimeError)
Agent(AgentRuntimeConfigError)
Retrieval(RetrievalRuntimeConfigError)
Workers(WorkerRuntimeConfigError)
FileIndex(FileIndexRuntimeConfigError)
Updates(UpdateRuntimeConfigError)
Trait Implementations§
Source§impl Clone for RuntimeConfigurationError
impl Clone for RuntimeConfigurationError
Source§fn clone(&self) -> RuntimeConfigurationError
fn clone(&self) -> RuntimeConfigurationError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RuntimeConfigurationError
impl Debug for RuntimeConfigurationError
Source§impl Display for RuntimeConfigurationError
impl Display for RuntimeConfigurationError
Source§impl Error for RuntimeConfigurationError
impl Error for RuntimeConfigurationError
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 PartialEq for RuntimeConfigurationError
impl PartialEq for RuntimeConfigurationError
Source§fn eq(&self, other: &RuntimeConfigurationError) -> bool
fn eq(&self, other: &RuntimeConfigurationError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for RuntimeConfigurationError
impl StructuralPartialEq for RuntimeConfigurationError
Auto Trait Implementations§
impl Freeze for RuntimeConfigurationError
impl RefUnwindSafe for RuntimeConfigurationError
impl Send for RuntimeConfigurationError
impl Sync for RuntimeConfigurationError
impl Unpin for RuntimeConfigurationError
impl UnsafeUnpin for RuntimeConfigurationError
impl UnwindSafe for RuntimeConfigurationError
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