pub trait RecipeUtilities where
    Self: Sized
{ fn as_solution(&self) -> Option<Value>; fn simplify_by_basic(self) -> Result<Self>; fn confirm_or_err(self, error: Error) -> Result<Value> { ... } fn confirm(self) -> Result<Value> { ... } }

Required Methods

Provided Methods

Implementors