#[non_exhaustive]pub struct VpcConnectorInfo {
pub display_name: String,
pub uri: String,
pub location: String,
/* private fields */
}Expand description
For display only. Metadata associated with a VPC connector.
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.display_name: StringName of a VPC connector.
uri: StringURI of a VPC connector.
location: StringLocation in which the VPC connector is deployed.
Implementations§
Source§impl VpcConnectorInfo
impl VpcConnectorInfo
Trait Implementations§
Source§impl Clone for VpcConnectorInfo
impl Clone for VpcConnectorInfo
Source§fn clone(&self) -> VpcConnectorInfo
fn clone(&self) -> VpcConnectorInfo
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 VpcConnectorInfo
impl Debug for VpcConnectorInfo
Source§impl Default for VpcConnectorInfo
impl Default for VpcConnectorInfo
Source§fn default() -> VpcConnectorInfo
fn default() -> VpcConnectorInfo
Returns the “default value” for a type. Read more
Source§impl Message for VpcConnectorInfo
impl Message for VpcConnectorInfo
Source§impl PartialEq for VpcConnectorInfo
impl PartialEq for VpcConnectorInfo
Source§fn eq(&self, other: &VpcConnectorInfo) -> bool
fn eq(&self, other: &VpcConnectorInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for VpcConnectorInfo
Auto Trait Implementations§
impl Freeze for VpcConnectorInfo
impl RefUnwindSafe for VpcConnectorInfo
impl Send for VpcConnectorInfo
impl Sync for VpcConnectorInfo
impl Unpin for VpcConnectorInfo
impl UnsafeUnpin for VpcConnectorInfo
impl UnwindSafe for VpcConnectorInfo
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