pub enum LlmCallError {
HttpError {
code: u16,
body: String,
},
TransportError(String),
Other(Error),
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LlmCallError
impl RefUnwindSafe for LlmCallError
impl Send for LlmCallError
impl Sync for LlmCallError
impl Unpin for LlmCallError
impl UnsafeUnpin for LlmCallError
impl UnwindSafe for LlmCallError
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