pub struct StoredAnycastIpList {
pub id: String,
pub name: String,
pub status: String,
pub arn: String,
pub ip_count: i32,
pub ip_address_type: Option<String>,
pub anycast_ips: Vec<String>,
pub last_modified_time: DateTime<Utc>,
pub etag: String,
}Fields§
§id: String§name: String§status: String§arn: String§ip_count: i32§ip_address_type: Option<String>§anycast_ips: Vec<String>§last_modified_time: DateTime<Utc>§etag: StringTrait Implementations§
Source§impl Clone for StoredAnycastIpList
impl Clone for StoredAnycastIpList
Source§fn clone(&self) -> StoredAnycastIpList
fn clone(&self) -> StoredAnycastIpList
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 StoredAnycastIpList
impl Debug for StoredAnycastIpList
Source§impl<'de> Deserialize<'de> for StoredAnycastIpList
impl<'de> Deserialize<'de> for StoredAnycastIpList
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 StoredAnycastIpList
impl RefUnwindSafe for StoredAnycastIpList
impl Send for StoredAnycastIpList
impl Sync for StoredAnycastIpList
impl Unpin for StoredAnycastIpList
impl UnsafeUnpin for StoredAnycastIpList
impl UnwindSafe for StoredAnycastIpList
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