#[non_exhaustive]pub enum EndpointRedirectionStatus {
Initiated,
Pending,
InProgress,
Completed,
Failed,
Reverted,
Unknown,
}Expand description
Current status of a dynamic endpoint redirection.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Initiated
The request was accepted.
Pending
The request is waiting to run.
InProgress
Endpoint migration is in progress.
Completed
Endpoint migration completed successfully.
Failed
Endpoint migration failed.
Reverted
A completed redirection was reverted.
Unknown
A status added by the API after this client release.
Trait Implementations§
Source§impl Clone for EndpointRedirectionStatus
impl Clone for EndpointRedirectionStatus
Source§fn clone(&self) -> EndpointRedirectionStatus
fn clone(&self) -> EndpointRedirectionStatus
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 moreimpl Copy for EndpointRedirectionStatus
Source§impl Debug for EndpointRedirectionStatus
impl Debug for EndpointRedirectionStatus
Source§impl<'de> Deserialize<'de> for EndpointRedirectionStatus
impl<'de> Deserialize<'de> for EndpointRedirectionStatus
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
impl Eq for EndpointRedirectionStatus
impl StructuralPartialEq for EndpointRedirectionStatus
Auto Trait Implementations§
impl Freeze for EndpointRedirectionStatus
impl RefUnwindSafe for EndpointRedirectionStatus
impl Send for EndpointRedirectionStatus
impl Sync for EndpointRedirectionStatus
impl Unpin for EndpointRedirectionStatus
impl UnsafeUnpin for EndpointRedirectionStatus
impl UnwindSafe for EndpointRedirectionStatus
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