pub enum ChatError {
ClashingArguments(ClashingArgumentsError),
ChatTranscriptionError(ChatTranscriptionError),
TranscriptDeserializationError(Error),
OpenAIError(OpenAIError),
NetworkError(Error),
IOError(Error),
EventSource(Error),
Unauthorized,
}
Variants§
ClashingArguments(ClashingArgumentsError)
ChatTranscriptionError(ChatTranscriptionError)
TranscriptDeserializationError(Error)
OpenAIError(OpenAIError)
NetworkError(Error)
IOError(Error)
EventSource(Error)
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for ChatError
impl !RefUnwindSafe for ChatError
impl Send for ChatError
impl Sync for ChatError
impl Unpin for ChatError
impl !UnwindSafe for ChatError
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