pub struct SecurityConfigurationSummary {
pub creation_date_time: Option<f64>,
pub name: Option<String>,
}
Expand description
The creation date and time, and name, of a security configuration.
Fields§
§creation_date_time: Option<f64>
The date and time the security configuration was created.
name: Option<String>
The name of the security configuration.
Trait Implementations§
Source§impl Clone for SecurityConfigurationSummary
impl Clone for SecurityConfigurationSummary
Source§fn clone(&self) -> SecurityConfigurationSummary
fn clone(&self) -> SecurityConfigurationSummary
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 SecurityConfigurationSummary
impl Debug for SecurityConfigurationSummary
Source§impl Default for SecurityConfigurationSummary
impl Default for SecurityConfigurationSummary
Source§fn default() -> SecurityConfigurationSummary
fn default() -> SecurityConfigurationSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SecurityConfigurationSummary
impl<'de> Deserialize<'de> for SecurityConfigurationSummary
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 SecurityConfigurationSummary
impl PartialEq for SecurityConfigurationSummary
Source§fn eq(&self, other: &SecurityConfigurationSummary) -> bool
fn eq(&self, other: &SecurityConfigurationSummary) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for SecurityConfigurationSummary
Auto Trait Implementations§
impl Freeze for SecurityConfigurationSummary
impl RefUnwindSafe for SecurityConfigurationSummary
impl Send for SecurityConfigurationSummary
impl Sync for SecurityConfigurationSummary
impl Unpin for SecurityConfigurationSummary
impl UnwindSafe for SecurityConfigurationSummary
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