pub enum RecipeBindingError {
Recipe(RecipeError),
Declaration(ResidencyDeclarationError),
}Expand description
Failure while lowering an atomic neutral recipe set into runtime bindings.
Variants§
Recipe(RecipeError)
Recipe metadata inference failed.
Declaration(ResidencyDeclarationError)
A runtime binding declaration was invalid.
Trait Implementations§
Source§impl Debug for RecipeBindingError
impl Debug for RecipeBindingError
Source§impl Display for RecipeBindingError
impl Display for RecipeBindingError
Source§impl Error for RecipeBindingError
impl Error for RecipeBindingError
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 From<RecipeError> for RecipeBindingError
impl From<RecipeError> for RecipeBindingError
Source§fn from(source: RecipeError) -> Self
fn from(source: RecipeError) -> Self
Converts to this type from the input type.
Source§impl From<ResidencyDeclarationError> for RecipeBindingError
impl From<ResidencyDeclarationError> for RecipeBindingError
Source§fn from(source: ResidencyDeclarationError) -> Self
fn from(source: ResidencyDeclarationError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RecipeBindingError
impl RefUnwindSafe for RecipeBindingError
impl Send for RecipeBindingError
impl Sync for RecipeBindingError
impl Unpin for RecipeBindingError
impl UnsafeUnpin for RecipeBindingError
impl UnwindSafe for RecipeBindingError
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