pub struct StoredConnectionGroup {
pub id: String,
pub name: String,
pub arn: String,
pub routing_endpoint: String,
pub status: String,
pub etag: String,
pub created_time: DateTime<Utc>,
pub last_modified_time: DateTime<Utc>,
pub ipv6_enabled: bool,
pub anycast_ip_list_id: Option<String>,
pub enabled: bool,
pub is_default: bool,
}Fields§
§id: String§name: String§arn: String§routing_endpoint: String§status: String§etag: String§created_time: DateTime<Utc>§last_modified_time: DateTime<Utc>§ipv6_enabled: bool§anycast_ip_list_id: Option<String>§enabled: bool§is_default: boolTrait Implementations§
Source§impl Clone for StoredConnectionGroup
impl Clone for StoredConnectionGroup
Source§fn clone(&self) -> StoredConnectionGroup
fn clone(&self) -> StoredConnectionGroup
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StoredConnectionGroup
impl Debug for StoredConnectionGroup
Source§impl<'de> Deserialize<'de> for StoredConnectionGroup
impl<'de> Deserialize<'de> for StoredConnectionGroup
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
Auto Trait Implementations§
impl Freeze for StoredConnectionGroup
impl RefUnwindSafe for StoredConnectionGroup
impl Send for StoredConnectionGroup
impl Sync for StoredConnectionGroup
impl Unpin for StoredConnectionGroup
impl UnsafeUnpin for StoredConnectionGroup
impl UnwindSafe for StoredConnectionGroup
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