pub struct IamPolicyAnalysis {
pub analysis_query: Option<IamPolicyAnalysisQuery>,
pub analysis_results: Option<Vec<IamPolicyAnalysisResult>>,
pub fully_explored: Option<bool>,
pub non_critical_errors: Option<Vec<IamPolicyAnalysisState>>,
}Expand description
An analysis message to group the query and results.
This type is not used in any activity, and only used as part of another schema.
Fields§
§analysis_query: Option<IamPolicyAnalysisQuery>The analysis query.
analysis_results: Option<Vec<IamPolicyAnalysisResult>>A list of IamPolicyAnalysisResult that matches the analysis query, or empty if no result is found.
fully_explored: Option<bool>Represents whether all entries in the analysis_results have been fully explored to answer the query.
non_critical_errors: Option<Vec<IamPolicyAnalysisState>>A list of non-critical errors happened during the query handling.
Trait Implementations§
Source§impl Clone for IamPolicyAnalysis
impl Clone for IamPolicyAnalysis
Source§fn clone(&self) -> IamPolicyAnalysis
fn clone(&self) -> IamPolicyAnalysis
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 IamPolicyAnalysis
impl Debug for IamPolicyAnalysis
Source§impl Default for IamPolicyAnalysis
impl Default for IamPolicyAnalysis
Source§fn default() -> IamPolicyAnalysis
fn default() -> IamPolicyAnalysis
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IamPolicyAnalysis
impl<'de> Deserialize<'de> for IamPolicyAnalysis
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 IamPolicyAnalysis
impl Serialize for IamPolicyAnalysis
impl Part for IamPolicyAnalysis
Auto Trait Implementations§
impl Freeze for IamPolicyAnalysis
impl RefUnwindSafe for IamPolicyAnalysis
impl Send for IamPolicyAnalysis
impl Sync for IamPolicyAnalysis
impl Unpin for IamPolicyAnalysis
impl UnwindSafe for IamPolicyAnalysis
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