pub struct EvaluationOptions {
pub hooks: Vec<HookWrapper>,
pub hints: HookHints,
}
Expand description
Contain hooks.
Fields§
§hooks: Vec<HookWrapper>
The hooks to be used during evaluation.
hints: HookHints
Hints to be passed to the hooks.
Implementations§
Trait Implementations§
Source§impl Clone for EvaluationOptions
impl Clone for EvaluationOptions
Source§fn clone(&self) -> EvaluationOptions
fn clone(&self) -> EvaluationOptions
Returns a copy 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 Default for EvaluationOptions
impl Default for EvaluationOptions
Source§fn default() -> EvaluationOptions
fn default() -> EvaluationOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EvaluationOptions
impl !RefUnwindSafe for EvaluationOptions
impl Send for EvaluationOptions
impl Sync for EvaluationOptions
impl Unpin for EvaluationOptions
impl !UnwindSafe for EvaluationOptions
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