pub struct IamPolicyAnalysisState {
pub cause: Option<String>,
pub code: Option<String>,
}Expand description
Represents the detailed state of an entity under analysis, such as a resource, an identity or an access.
This type is not used in any activity, and only used as part of another schema.
Fields§
§cause: Option<String>The human-readable description of the cause of failure.
code: Option<String>The Google standard error code that best describes the state. For example: - OK means the analysis on this entity has been successfully finished; - PERMISSION_DENIED means an access denied error is encountered; - DEADLINE_EXCEEDED means the analysis on this entity hasn’t been started in time;
Trait Implementations§
Source§impl Clone for IamPolicyAnalysisState
impl Clone for IamPolicyAnalysisState
Source§fn clone(&self) -> IamPolicyAnalysisState
fn clone(&self) -> IamPolicyAnalysisState
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 Debug for IamPolicyAnalysisState
impl Debug for IamPolicyAnalysisState
Source§impl Default for IamPolicyAnalysisState
impl Default for IamPolicyAnalysisState
Source§fn default() -> IamPolicyAnalysisState
fn default() -> IamPolicyAnalysisState
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IamPolicyAnalysisState
impl<'de> Deserialize<'de> for IamPolicyAnalysisState
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 Serialize for IamPolicyAnalysisState
impl Serialize for IamPolicyAnalysisState
impl Part for IamPolicyAnalysisState
Auto Trait Implementations§
impl Freeze for IamPolicyAnalysisState
impl RefUnwindSafe for IamPolicyAnalysisState
impl Send for IamPolicyAnalysisState
impl Sync for IamPolicyAnalysisState
impl Unpin for IamPolicyAnalysisState
impl UnwindSafe for IamPolicyAnalysisState
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