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