pub enum PreflightError {
ProviderUnresolved {
member: String,
provider: String,
detail: String,
},
ModelUnresolved {
member: String,
provider: String,
model: String,
detail: String,
},
CredentialMissing {
member: String,
provider: String,
detail: String,
},
CapabilityUnknown {
provider: String,
model: String,
detail: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for PreflightError
impl Clone for PreflightError
Source§fn clone(&self) -> PreflightError
fn clone(&self) -> PreflightError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PreflightError
impl Debug for PreflightError
Source§impl Display for PreflightError
impl Display for PreflightError
impl Eq for PreflightError
Source§impl Error for PreflightError
impl Error for PreflightError
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 PreflightError
impl PartialEq for PreflightError
impl StructuralPartialEq for PreflightError
Auto Trait Implementations§
impl Freeze for PreflightError
impl RefUnwindSafe for PreflightError
impl Send for PreflightError
impl Sync for PreflightError
impl Unpin for PreflightError
impl UnsafeUnpin for PreflightError
impl UnwindSafe for PreflightError
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