pub enum ReversePrivateEndpointStatus {
Unknown,
Provisioning,
Deleting,
Ready,
Failed,
PendingAcceptance,
Rejected,
Expired,
Other(String),
}Expand description
Inline enum for ReversePrivateEndpoint.status.
Variants§
Unknown
Provisioning
Deleting
Ready
Failed
PendingAcceptance
Rejected
Expired
Other(String)
Catch-all for unknown or newly-added values.
Trait Implementations§
Source§impl Clone for ReversePrivateEndpointStatus
impl Clone for ReversePrivateEndpointStatus
Source§fn clone(&self) -> ReversePrivateEndpointStatus
fn clone(&self) -> ReversePrivateEndpointStatus
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 ReversePrivateEndpointStatus
impl Debug for ReversePrivateEndpointStatus
Source§impl Default for ReversePrivateEndpointStatus
impl Default for ReversePrivateEndpointStatus
Source§fn default() -> ReversePrivateEndpointStatus
fn default() -> ReversePrivateEndpointStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReversePrivateEndpointStatus
impl<'de> Deserialize<'de> for ReversePrivateEndpointStatus
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 PartialEq for ReversePrivateEndpointStatus
impl PartialEq for ReversePrivateEndpointStatus
Source§fn eq(&self, other: &ReversePrivateEndpointStatus) -> bool
fn eq(&self, other: &ReversePrivateEndpointStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ReversePrivateEndpointStatus
Auto Trait Implementations§
impl Freeze for ReversePrivateEndpointStatus
impl RefUnwindSafe for ReversePrivateEndpointStatus
impl Send for ReversePrivateEndpointStatus
impl Sync for ReversePrivateEndpointStatus
impl Unpin for ReversePrivateEndpointStatus
impl UnsafeUnpin for ReversePrivateEndpointStatus
impl UnwindSafe for ReversePrivateEndpointStatus
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