pub struct ValidateSecurityProfileBehaviorsResponse {
pub valid: Option<bool>,
pub validation_errors: Option<Vec<ValidationError>>,
}Fields§
§valid: Option<bool>True if the behaviors were valid.
validation_errors: Option<Vec<ValidationError>>The list of any errors found in the behaviors.
Trait Implementations§
Source§impl Clone for ValidateSecurityProfileBehaviorsResponse
impl Clone for ValidateSecurityProfileBehaviorsResponse
Source§fn clone(&self) -> ValidateSecurityProfileBehaviorsResponse
fn clone(&self) -> ValidateSecurityProfileBehaviorsResponse
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 ValidateSecurityProfileBehaviorsResponse
impl Default for ValidateSecurityProfileBehaviorsResponse
Source§fn default() -> ValidateSecurityProfileBehaviorsResponse
fn default() -> ValidateSecurityProfileBehaviorsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ValidateSecurityProfileBehaviorsResponse
impl<'de> Deserialize<'de> for ValidateSecurityProfileBehaviorsResponse
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 ValidateSecurityProfileBehaviorsResponse
impl PartialEq for ValidateSecurityProfileBehaviorsResponse
Source§fn eq(&self, other: &ValidateSecurityProfileBehaviorsResponse) -> bool
fn eq(&self, other: &ValidateSecurityProfileBehaviorsResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ValidateSecurityProfileBehaviorsResponse
Auto Trait Implementations§
impl Freeze for ValidateSecurityProfileBehaviorsResponse
impl RefUnwindSafe for ValidateSecurityProfileBehaviorsResponse
impl Send for ValidateSecurityProfileBehaviorsResponse
impl Sync for ValidateSecurityProfileBehaviorsResponse
impl Unpin for ValidateSecurityProfileBehaviorsResponse
impl UnwindSafe for ValidateSecurityProfileBehaviorsResponse
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