pub struct EvaluationContextWarnings {
pub max_depth_reached: bool,
pub variable_not_found: bool,
pub function_not_found: bool,
pub evaluator_not_found: bool,
}Expand description
Specifies under which circumstances the evaluator should log a warning.
Fields§
§max_depth_reached: bool§variable_not_found: bool§function_not_found: bool§evaluator_not_found: boolTrait Implementations§
Source§impl Clone for EvaluationContextWarnings
impl Clone for EvaluationContextWarnings
Source§fn clone(&self) -> EvaluationContextWarnings
fn clone(&self) -> EvaluationContextWarnings
Returns a duplicate 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 EvaluationContextWarnings
impl Default for EvaluationContextWarnings
impl Copy for EvaluationContextWarnings
Auto Trait Implementations§
impl Freeze for EvaluationContextWarnings
impl RefUnwindSafe for EvaluationContextWarnings
impl Send for EvaluationContextWarnings
impl Sync for EvaluationContextWarnings
impl Unpin for EvaluationContextWarnings
impl UnwindSafe for EvaluationContextWarnings
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