pub trait PodTemplateSpecExt {
    // Required methods
    fn new(name: impl ToString) -> Self;
    fn labels(
        self,
        labels: impl IntoIterator<Item = (impl ToString, impl ToString)>
    ) -> Self;
    fn pod_spec(self, spec: PodSpec) -> Self;
}

Required Methods§

source

fn new(name: impl ToString) -> Self

source

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

source

fn pod_spec(self, spec: PodSpec) -> Self

Implementors§