pub trait IsEmptyProperty {
// Required method
fn is_empty_property(&self) -> bool;
}Expand description
Any type that implements this trait provides access to its is_empty method
to be used by the implementation of the
AsssertEmptiness assertions.
Required Methods§
Sourcefn is_empty_property(&self) -> bool
fn is_empty_property(&self) -> bool
Provides access to the is_empty property.