pub struct PodSecurityPolicyReviewStatus {
pub allowed_service_accounts: Vec<ServiceAccountPodSecurityPolicyReviewStatus>,
}
Expand description
PodSecurityPolicyReviewStatus represents the status of PodSecurityPolicyReview.
Fields§
§allowed_service_accounts: Vec<ServiceAccountPodSecurityPolicyReviewStatus>
allowedServiceAccounts returns the list of service accounts in this namespace that have the power to create the PodTemplateSpec.
Trait Implementations§
Source§impl Clone for PodSecurityPolicyReviewStatus
impl Clone for PodSecurityPolicyReviewStatus
Source§fn clone(&self) -> PodSecurityPolicyReviewStatus
fn clone(&self) -> PodSecurityPolicyReviewStatus
Returns a duplicate 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 Default for PodSecurityPolicyReviewStatus
impl Default for PodSecurityPolicyReviewStatus
Source§fn default() -> PodSecurityPolicyReviewStatus
fn default() -> PodSecurityPolicyReviewStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PodSecurityPolicyReviewStatus
impl<'de> Deserialize<'de> for PodSecurityPolicyReviewStatus
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 PartialEq for PodSecurityPolicyReviewStatus
impl PartialEq for PodSecurityPolicyReviewStatus
Source§fn eq(&self, other: &PodSecurityPolicyReviewStatus) -> bool
fn eq(&self, other: &PodSecurityPolicyReviewStatus) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PodSecurityPolicyReviewStatus
Auto Trait Implementations§
impl Freeze for PodSecurityPolicyReviewStatus
impl RefUnwindSafe for PodSecurityPolicyReviewStatus
impl Send for PodSecurityPolicyReviewStatus
impl Sync for PodSecurityPolicyReviewStatus
impl Unpin for PodSecurityPolicyReviewStatus
impl UnwindSafe for PodSecurityPolicyReviewStatus
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