pub struct UnknownEngineError {
pub key: String,
}Expand description
Lookup failure for engine_by_key.
Applications must treat this as an explicit unsupported state (e.g. a project created by a newer Hydra carrying an engine this build lacks) — never as a fallback to a default engine (spec §2.2).
Fields§
§key: StringThe key that failed to resolve.
Trait Implementations§
Source§impl Clone for UnknownEngineError
impl Clone for UnknownEngineError
Source§fn clone(&self) -> UnknownEngineError
fn clone(&self) -> UnknownEngineError
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 UnknownEngineError
impl Debug for UnknownEngineError
Source§impl Display for UnknownEngineError
impl Display for UnknownEngineError
impl Eq for UnknownEngineError
Source§impl Error for UnknownEngineError
impl Error for UnknownEngineError
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 UnknownEngineError
impl PartialEq for UnknownEngineError
impl StructuralPartialEq for UnknownEngineError
Auto Trait Implementations§
impl Freeze for UnknownEngineError
impl RefUnwindSafe for UnknownEngineError
impl Send for UnknownEngineError
impl Sync for UnknownEngineError
impl Unpin for UnknownEngineError
impl UnsafeUnpin for UnknownEngineError
impl UnwindSafe for UnknownEngineError
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