pub enum LangSmithError {
Config(String),
Http(Error),
Serialization(Error),
TracingDisabled,
InvalidUuid(Error),
Other(String),
}Variants§
Trait Implementations§
Source§impl Debug for LangSmithError
impl Debug for LangSmithError
Source§impl Display for LangSmithError
impl Display for LangSmithError
Source§impl Error for LangSmithError
impl Error for LangSmithError
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 LangSmithError
impl From<Error> for LangSmithError
Source§impl From<Error> for LangSmithError
impl From<Error> for LangSmithError
Auto Trait Implementations§
impl Freeze for LangSmithError
impl !RefUnwindSafe for LangSmithError
impl Send for LangSmithError
impl Sync for LangSmithError
impl Unpin for LangSmithError
impl !UnwindSafe for LangSmithError
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