pub enum UbiquityError {
Show 22 variants
ConsciousnessTooLow(f64),
CoherenceLoss(f64),
AgentNotFound(String),
SocketError(Error),
SerializationError(Error),
TaskExecutionError(String),
MeshError(String),
ConfigError(String),
DatabaseError(String),
LLMError(String),
RateLimitError(String),
AuthenticationError(String),
CommandExecution(String),
Timeout(String),
NotFound(String),
Internal(String),
Network(String),
Serialization(String),
Configuration(String),
ResourceExhausted(String),
CloudExecution(String),
Other(Error),
}Variants§
ConsciousnessTooLow(f64)
CoherenceLoss(f64)
AgentNotFound(String)
SocketError(Error)
SerializationError(Error)
TaskExecutionError(String)
MeshError(String)
ConfigError(String)
DatabaseError(String)
LLMError(String)
RateLimitError(String)
AuthenticationError(String)
CommandExecution(String)
Timeout(String)
NotFound(String)
Internal(String)
Network(String)
Serialization(String)
Configuration(String)
ResourceExhausted(String)
CloudExecution(String)
Other(Error)
Trait Implementations§
Source§impl Debug for UbiquityError
impl Debug for UbiquityError
Source§impl Display for UbiquityError
impl Display for UbiquityError
Source§impl Error for UbiquityError
impl Error for UbiquityError
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<Error> for UbiquityError
impl From<Error> for UbiquityError
Source§impl From<Error> for UbiquityError
impl From<Error> for UbiquityError
Source§impl From<Error> for UbiquityError
impl From<Error> for UbiquityError
Source§impl Retryable for UbiquityError
impl Retryable for UbiquityError
fn is_retryable(&self) -> bool
fn retry_policy(&self) -> RetryPolicy
Auto Trait Implementations§
impl !RefUnwindSafe for UbiquityError
impl !UnwindSafe for UbiquityError
impl Freeze for UbiquityError
impl Send for UbiquityError
impl Sync for UbiquityError
impl Unpin for UbiquityError
impl UnsafeUnpin for UbiquityError
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