pub trait CheckEmpty: Default + Clone {
// Required method
fn is_empty(&self) -> bool;
}Available on crate feature
unstable only.Expand description
The CheckEmpty trait allows to check if a collection is empty.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.