pub trait LabelSelectorExt {
    fn all_objects() -> Self;
    fn no_objects() -> Self;
    fn new() -> Self;
    fn match_labels(
        self,
        match_labels: impl IntoIterator<Item = (impl ToString, impl ToString)>
    ) -> Self; }

Required Methods

Implementors