#[non_exhaustive]pub struct ValidatePolicyFinding { /* private fields */ }
Expand description
A finding in a policy. Each finding is an actionable recommendation that can be used to improve the policy.
Implementations§
source§impl ValidatePolicyFinding
impl ValidatePolicyFinding
sourcepub fn finding_details(&self) -> Option<&str>
pub fn finding_details(&self) -> Option<&str>
A localized message that explains the finding and provides guidance on how to address it.
sourcepub fn finding_type(&self) -> Option<&ValidatePolicyFindingType>
pub fn finding_type(&self) -> Option<&ValidatePolicyFindingType>
The impact of the finding.
Security warnings report when the policy allows access that we consider overly permissive.
Errors report when a part of the policy is not functional.
Warnings report non-security issues when a policy does not conform to policy writing best practices.
Suggestions recommend stylistic improvements in the policy that do not impact access.
sourcepub fn issue_code(&self) -> Option<&str>
pub fn issue_code(&self) -> Option<&str>
The issue code provides an identifier of the issue associated with this finding.
sourcepub fn learn_more_link(&self) -> Option<&str>
pub fn learn_more_link(&self) -> Option<&str>
A link to additional documentation about the type of finding.
source§impl ValidatePolicyFinding
impl ValidatePolicyFinding
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ValidatePolicyFinding
.
Trait Implementations§
source§impl Clone for ValidatePolicyFinding
impl Clone for ValidatePolicyFinding
source§fn clone(&self) -> ValidatePolicyFinding
fn clone(&self) -> ValidatePolicyFinding
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ValidatePolicyFinding
impl Debug for ValidatePolicyFinding
source§impl PartialEq<ValidatePolicyFinding> for ValidatePolicyFinding
impl PartialEq<ValidatePolicyFinding> for ValidatePolicyFinding
source§fn eq(&self, other: &ValidatePolicyFinding) -> bool
fn eq(&self, other: &ValidatePolicyFinding) -> bool
self
and other
values to be equal, and is used
by ==
.