pub trait IsFalsified {
// Required method
fn is_falsified(&self) -> bool;
// Provided method
fn non_falsified(&self) -> bool { ... }
}
Expand description
The trait to return the failure of the property.
プロパティの失敗を返すためのトレイト.
pub trait IsFalsified {
// Required method
fn is_falsified(&self) -> bool;
// Provided method
fn non_falsified(&self) -> bool { ... }
}
The trait to return the failure of the property.
プロパティの失敗を返すためのトレイト.