pub enum ReversePrivateEndpointType {
VPC_ENDPOINT_SERVICE,
VPC_RESOURCE,
MSK_MULTI_VPC,
GCP_PSC_SERVICE_ATTACHMENT,
Unknown(String),
}Expand description
Inline enum for ReversePrivateEndpoint.type.
Variants§
VPC_ENDPOINT_SERVICE
VPC_RESOURCE
MSK_MULTI_VPC
GCP_PSC_SERVICE_ATTACHMENT
Unknown(String)
Catch-all for unknown or newly-added values.
Trait Implementations§
Source§impl Clone for ReversePrivateEndpointType
impl Clone for ReversePrivateEndpointType
Source§fn clone(&self) -> ReversePrivateEndpointType
fn clone(&self) -> ReversePrivateEndpointType
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 ReversePrivateEndpointType
impl Debug for ReversePrivateEndpointType
Source§impl Default for ReversePrivateEndpointType
impl Default for ReversePrivateEndpointType
Source§fn default() -> ReversePrivateEndpointType
fn default() -> ReversePrivateEndpointType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReversePrivateEndpointType
impl<'de> Deserialize<'de> for ReversePrivateEndpointType
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 Display for ReversePrivateEndpointType
impl Display for ReversePrivateEndpointType
impl StructuralPartialEq for ReversePrivateEndpointType
Auto Trait Implementations§
impl Freeze for ReversePrivateEndpointType
impl RefUnwindSafe for ReversePrivateEndpointType
impl Send for ReversePrivateEndpointType
impl Sync for ReversePrivateEndpointType
impl Unpin for ReversePrivateEndpointType
impl UnsafeUnpin for ReversePrivateEndpointType
impl UnwindSafe for ReversePrivateEndpointType
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