pub trait ClusterRoleBindingExt: ResourceBuilder {
    // Required methods
    fn new(name: impl ToString, cluster_role: &ClusterRole) -> Self;
    fn subjects(self, subjects: impl IntoIterator<Item = Subject>) -> Self;
}

Required Methods§

source

fn new(name: impl ToString, cluster_role: &ClusterRole) -> Self

source

fn subjects(self, subjects: impl IntoIterator<Item = Subject>) -> Self

Implementors§