pub struct RandomNumberEval<'a> {
pub min: Option<&'a str>,
pub max: Option<&'a str>,
pub base_eval: BaseEvaluation,
}
Fields§
§min: Option<&'a str>
§max: Option<&'a str>
§base_eval: BaseEvaluation
Implementations§
Trait Implementations§
Source§impl AsRef<BaseEvaluation> for RandomNumberEval<'_>
impl AsRef<BaseEvaluation> for RandomNumberEval<'_>
Source§fn as_ref(&self) -> &BaseEvaluation
fn as_ref(&self) -> &BaseEvaluation
Converts this type into a shared reference of the (usually inferred) input type.
Auto Trait Implementations§
impl<'a> Freeze for RandomNumberEval<'a>
impl<'a> RefUnwindSafe for RandomNumberEval<'a>
impl<'a> Send for RandomNumberEval<'a>
impl<'a> Sync for RandomNumberEval<'a>
impl<'a> Unpin for RandomNumberEval<'a>
impl<'a> UnwindSafe for RandomNumberEval<'a>
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