pub enum CheckResult {
Allowed,
Blocked,
}Expand description
Many algorithms are allowed to return either “Allowed” or “Blocked”. The spec describes these as strings.
Variants§
Trait Implementations§
source§impl Clone for CheckResult
impl Clone for CheckResult
source§fn clone(&self) -> CheckResult
fn clone(&self) -> CheckResult
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 Debug for CheckResult
impl Debug for CheckResult
source§impl PartialEq<CheckResult> for CheckResult
impl PartialEq<CheckResult> for CheckResult
source§fn eq(&self, other: &CheckResult) -> bool
fn eq(&self, other: &CheckResult) -> bool
This method tests for
self and other values to be equal, and is used
by ==.