pub enum ModelCatalogError {
Request(String),
Decode(String),
ProviderMissing,
ModelNotFound {
model: String,
suggestions: String,
},
AmbiguousModel {
model: String,
matches: Vec<String>,
},
DeprecatedModel {
model: String,
},
InvalidRequest {
model: String,
message: String,
},
}Variants§
Request(String)
Decode(String)
ProviderMissing
ModelNotFound
Retained for API stability. Since the fail-open default resolution,
resolve no longer produces this error: unknown ids resolve against
conservative defaults marked LimitsSource::Default instead.
AmbiguousModel
DeprecatedModel
InvalidRequest
Trait Implementations§
Source§impl Debug for ModelCatalogError
impl Debug for ModelCatalogError
Source§impl Display for ModelCatalogError
impl Display for ModelCatalogError
Source§impl Error for ModelCatalogError
impl Error for ModelCatalogError
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 ModelCatalogError
impl RefUnwindSafe for ModelCatalogError
impl Send for ModelCatalogError
impl Sync for ModelCatalogError
impl Unpin for ModelCatalogError
impl UnsafeUnpin for ModelCatalogError
impl UnwindSafe for ModelCatalogError
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