pub trait ValidateRequired {
// Required method
fn is_some(&self) -> bool;
// Provided method
fn validate_required(&self) -> bool { ... }
}Expand description
Validates whether the given Option is Some
pub trait ValidateRequired {
// Required method
fn is_some(&self) -> bool;
// Provided method
fn validate_required(&self) -> bool { ... }
}Validates whether the given Option is Some