pub(crate) trait IsNoneOrEmpty<T> {
    // Required method
    fn is_none_or_empty(&self) -> bool;
}Required Methods§
Sourcefn is_none_or_empty(&self) -> bool
 
fn is_none_or_empty(&self) -> bool
Returns true if an Option does not contain a string or contains an empty string.