pub trait PodTemplateSpecExt {
    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

Implementors