pub trait LabelSelectorExt {
    // Required methods
    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§

source

fn all_objects() -> Self

source

fn no_objects() -> Self

source

fn new() -> Self

source

fn match_labels( self, match_labels: impl IntoIterator<Item = (impl ToString, impl ToString)> ) -> Self

Implementors§