pub trait MaybeEmpty {
// Required method
fn is_empty(&self) -> bool;
}
Expand description
A helper trait to check if the values clause of
an In
or NotIn
query dsl node is empty or not
Returns true
if self represents an empty collection
Otherwise false
is returned.