Struct k8s_openapi::api::rbac::v1::ClusterRole
source · pub struct ClusterRole {
pub aggregation_rule: Option<AggregationRule>,
pub metadata: ObjectMeta,
pub rules: Option<Vec<PolicyRule>>,
}
Expand description
ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.
Fields§
§aggregation_rule: Option<AggregationRule>
AggregationRule is an optional field that describes how to build the Rules for this ClusterRole. If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be stomped by the controller.
metadata: ObjectMeta
Standard object’s metadata.
rules: Option<Vec<PolicyRule>>
Rules holds all the PolicyRules for this ClusterRole
Trait Implementations§
source§impl Clone for ClusterRole
impl Clone for ClusterRole
source§fn clone(&self) -> ClusterRole
fn clone(&self) -> ClusterRole
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ClusterRole
impl Debug for ClusterRole
source§impl DeepMerge for ClusterRole
impl DeepMerge for ClusterRole
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.source§impl Default for ClusterRole
impl Default for ClusterRole
source§fn default() -> ClusterRole
fn default() -> ClusterRole
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ClusterRole
impl<'de> Deserialize<'de> for ClusterRole
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl ListableResource for ClusterRole
impl ListableResource for ClusterRole
source§impl Metadata for ClusterRole
impl Metadata for ClusterRole
source§impl PartialEq for ClusterRole
impl PartialEq for ClusterRole
source§impl Resource for ClusterRole
impl Resource for ClusterRole
source§const API_VERSION: &'static str = "rbac.authorization.k8s.io/v1"
const API_VERSION: &'static str = "rbac.authorization.k8s.io/v1"
The API version of the resource. This is a composite of
Resource::GROUP
and Resource::VERSION
(eg "apiextensions.k8s.io/v1beta1"
)
or just the version for resources without a group (eg "v1"
). Read moresource§const GROUP: &'static str = "rbac.authorization.k8s.io"
const GROUP: &'static str = "rbac.authorization.k8s.io"
The group of the resource, or the empty string if the resource doesn’t have a group.
source§const URL_PATH_SEGMENT: &'static str = "clusterroles"
const URL_PATH_SEGMENT: &'static str = "clusterroles"
The URL path segment used to construct URLs related to this resource. Read more
source§type Scope = ClusterResourceScope
type Scope = ClusterResourceScope
Indicates whether the resource is namespace-scoped or cluster-scoped or a subresource. Read more
source§impl Serialize for ClusterRole
impl Serialize for ClusterRole
impl StructuralPartialEq for ClusterRole
Auto Trait Implementations§
impl Freeze for ClusterRole
impl RefUnwindSafe for ClusterRole
impl Send for ClusterRole
impl Sync for ClusterRole
impl Unpin for ClusterRole
impl UnwindSafe for ClusterRole
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)