pub struct VpcAttachment {
pub state: Option<String>,
pub vpc_id: Option<String>,
}Expand description
Describes an attachment between a virtual private gateway and a VPC.
Fields§
§state: Option<String>The current state of the attachment.
vpc_id: Option<String>The ID of the VPC.
Trait Implementations§
Source§impl Clone for VpcAttachment
impl Clone for VpcAttachment
Source§fn clone(&self) -> VpcAttachment
fn clone(&self) -> VpcAttachment
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 VpcAttachment
impl Debug for VpcAttachment
Source§impl Default for VpcAttachment
impl Default for VpcAttachment
Source§fn default() -> VpcAttachment
fn default() -> VpcAttachment
Returns the “default value” for a type. Read more
Source§impl PartialEq for VpcAttachment
impl PartialEq for VpcAttachment
impl StructuralPartialEq for VpcAttachment
Auto Trait Implementations§
impl Freeze for VpcAttachment
impl RefUnwindSafe for VpcAttachment
impl Send for VpcAttachment
impl Sync for VpcAttachment
impl Unpin for VpcAttachment
impl UnwindSafe for VpcAttachment
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