pub struct AListOfAppsItemVpc {
pub egress_ips: Vec<TheEgressIpsAssociatedWithTheVpcItem>,
pub id: Option<String>,
}Expand description
AListOfAppsItemVpc
JSON schema
{
"readOnly": true,
"type": "object",
"properties": {
"egress_ips": {
"title": "The egress ips associated with the VPC.",
"type": "array",
"items": {
"type": "object",
"properties": {
"ip": {
"examples": [
"10.0.0.1"
],
"type": "string"
}
}
}
},
"id": {
"title": "The ID of the VPC.",
"examples": [
"c22d8f48-4bc4-49f5-8ca0-58e7164427ac"
],
"type": "string"
}
}
}Fields§
§egress_ips: Vec<TheEgressIpsAssociatedWithTheVpcItem>§id: Option<String>Trait Implementations§
Source§impl Clone for AListOfAppsItemVpc
impl Clone for AListOfAppsItemVpc
Source§fn clone(&self) -> AListOfAppsItemVpc
fn clone(&self) -> AListOfAppsItemVpc
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 AListOfAppsItemVpc
impl Debug for AListOfAppsItemVpc
Source§impl Default for AListOfAppsItemVpc
impl Default for AListOfAppsItemVpc
Source§impl<'de> Deserialize<'de> for AListOfAppsItemVpc
impl<'de> Deserialize<'de> for AListOfAppsItemVpc
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 From<&AListOfAppsItemVpc> for AListOfAppsItemVpc
impl From<&AListOfAppsItemVpc> for AListOfAppsItemVpc
Source§fn from(value: &AListOfAppsItemVpc) -> Self
fn from(value: &AListOfAppsItemVpc) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AListOfAppsItemVpc
impl RefUnwindSafe for AListOfAppsItemVpc
impl Send for AListOfAppsItemVpc
impl Sync for AListOfAppsItemVpc
impl Unpin for AListOfAppsItemVpc
impl UnsafeUnpin for AListOfAppsItemVpc
impl UnwindSafe for AListOfAppsItemVpc
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