pub struct EloRustValidator {
pub name: String,
pub elo_expression: String,
pub generated_code: Option<String>,
}Expand description
A single ELO Rust validator with generated code
Fields§
§name: StringName/identifier of the validator
elo_expression: StringELO expression source
generated_code: Option<String>Generated Rust code (if compiled)
Trait Implementations§
Source§impl Clone for EloRustValidator
impl Clone for EloRustValidator
Source§fn clone(&self) -> EloRustValidator
fn clone(&self) -> EloRustValidator
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 moreAuto Trait Implementations§
impl Freeze for EloRustValidator
impl RefUnwindSafe for EloRustValidator
impl Send for EloRustValidator
impl Sync for EloRustValidator
impl Unpin for EloRustValidator
impl UnsafeUnpin for EloRustValidator
impl UnwindSafe for EloRustValidator
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