pub enum GenerateError {
NotReady,
InvalidRequest(String),
Unavailable(String),
Internal(String),
}Expand description
Errors returned by Backend::generate() before any tokens have streamed.
Mid-stream failures terminate the stream silently (no Done event); the
caller observes the absence of a terminal event and translates that to
Response::Error with code: backend_unavailable per docs/protocol-v1.md.
Variants§
NotReady
Backend was not ready when generate() was called.
InvalidRequest(String)
Backend rejected the request as malformed (sampling out of range, etc.).
Backend tried to start generation and failed (model not loaded, remote API errored, etc.).
Internal(String)
Anything else.
Trait Implementations§
Source§impl Debug for GenerateError
impl Debug for GenerateError
Source§impl Display for GenerateError
impl Display for GenerateError
Source§impl Error for GenerateError
impl Error for GenerateError
1.30.0 · 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 GenerateError
impl RefUnwindSafe for GenerateError
impl Send for GenerateError
impl Sync for GenerateError
impl Unpin for GenerateError
impl UnsafeUnpin for GenerateError
impl UnwindSafe for GenerateError
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