pub struct ValidationErrorsEntry {
pub check_name: Option<String>,
pub error_message: Option<String>,
}
Expand description
Displays errors that occurred during validation of the resource policy.
Fields§
§check_name: Option<String>
Checks the name of the policy.
error_message: Option<String>
Displays error messages if validation encounters problems during validation of the resource policy.
Trait Implementations§
Source§impl Clone for ValidationErrorsEntry
impl Clone for ValidationErrorsEntry
Source§fn clone(&self) -> ValidationErrorsEntry
fn clone(&self) -> ValidationErrorsEntry
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 ValidationErrorsEntry
impl Debug for ValidationErrorsEntry
Source§impl Default for ValidationErrorsEntry
impl Default for ValidationErrorsEntry
Source§fn default() -> ValidationErrorsEntry
fn default() -> ValidationErrorsEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ValidationErrorsEntry
impl<'de> Deserialize<'de> for ValidationErrorsEntry
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 ValidationErrorsEntry
impl PartialEq for ValidationErrorsEntry
impl StructuralPartialEq for ValidationErrorsEntry
Auto Trait Implementations§
impl Freeze for ValidationErrorsEntry
impl RefUnwindSafe for ValidationErrorsEntry
impl Send for ValidationErrorsEntry
impl Sync for ValidationErrorsEntry
impl Unpin for ValidationErrorsEntry
impl UnwindSafe for ValidationErrorsEntry
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