pub enum MultiModelError {
ModelNotFound(String),
IncompatibleOutputs,
InvalidEnsemble(String),
RoutingFailed(String),
ResourceLimitExceeded(String),
}Expand description
Multi-model coordination errors.
Variants§
ModelNotFound(String)
IncompatibleOutputs
InvalidEnsemble(String)
RoutingFailed(String)
ResourceLimitExceeded(String)
Trait Implementations§
Source§impl Clone for MultiModelError
impl Clone for MultiModelError
Source§fn clone(&self) -> MultiModelError
fn clone(&self) -> MultiModelError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MultiModelError
impl Debug for MultiModelError
Source§impl Display for MultiModelError
impl Display for MultiModelError
Source§impl Error for MultiModelError
impl Error for MultiModelError
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()
Source§impl PartialEq for MultiModelError
impl PartialEq for MultiModelError
impl StructuralPartialEq for MultiModelError
Auto Trait Implementations§
impl Freeze for MultiModelError
impl RefUnwindSafe for MultiModelError
impl Send for MultiModelError
impl Sync for MultiModelError
impl Unpin for MultiModelError
impl UnwindSafe for MultiModelError
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