#[non_exhaustive]pub struct DeleteBgpPeerOutput {
pub virtual_interface: Option<VirtualInterface>,
/* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.virtual_interface: Option<VirtualInterface>The virtual interface.
Implementations§
source§impl DeleteBgpPeerOutput
impl DeleteBgpPeerOutput
sourcepub fn virtual_interface(&self) -> Option<&VirtualInterface>
pub fn virtual_interface(&self) -> Option<&VirtualInterface>
The virtual interface.
source§impl DeleteBgpPeerOutput
impl DeleteBgpPeerOutput
sourcepub fn builder() -> DeleteBgpPeerOutputBuilder
pub fn builder() -> DeleteBgpPeerOutputBuilder
Creates a new builder-style object to manufacture DeleteBgpPeerOutput.
Trait Implementations§
source§impl Clone for DeleteBgpPeerOutput
impl Clone for DeleteBgpPeerOutput
source§fn clone(&self) -> DeleteBgpPeerOutput
fn clone(&self) -> DeleteBgpPeerOutput
Returns a copy 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 DeleteBgpPeerOutput
impl Debug for DeleteBgpPeerOutput
source§impl PartialEq<DeleteBgpPeerOutput> for DeleteBgpPeerOutput
impl PartialEq<DeleteBgpPeerOutput> for DeleteBgpPeerOutput
source§fn eq(&self, other: &DeleteBgpPeerOutput) -> bool
fn eq(&self, other: &DeleteBgpPeerOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for DeleteBgpPeerOutput
impl RequestId for DeleteBgpPeerOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for DeleteBgpPeerOutput
Auto Trait Implementations§
impl RefUnwindSafe for DeleteBgpPeerOutput
impl Send for DeleteBgpPeerOutput
impl Sync for DeleteBgpPeerOutput
impl Unpin for DeleteBgpPeerOutput
impl UnwindSafe for DeleteBgpPeerOutput
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