pub enum LLMTraceError {
Storage(String),
Security(String),
Serialization(Error),
InvalidTenant {
tenant_id: TenantId,
},
Config(String),
}Expand description
Core error types.
Variants§
Storage(String)
Storage layer error.
Security(String)
Security analysis error.
Serialization(Error)
Serialization / deserialization error.
InvalidTenant
Invalid tenant identifier.
Config(String)
Configuration error.
Trait Implementations§
Source§impl Debug for LLMTraceError
impl Debug for LLMTraceError
Source§impl Display for LLMTraceError
impl Display for LLMTraceError
Source§impl Error for LLMTraceError
impl Error for LLMTraceError
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()
Auto Trait Implementations§
impl Freeze for LLMTraceError
impl !RefUnwindSafe for LLMTraceError
impl Send for LLMTraceError
impl Sync for LLMTraceError
impl Unpin for LLMTraceError
impl UnsafeUnpin for LLMTraceError
impl !UnwindSafe for LLMTraceError
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