pub enum RdapStatus {
Show 19 variants
Validated,
RenewProhibited,
UpdateProhibited,
TransferProhibited,
DeleteProhibited,
Proxy,
Private,
Removed,
Obscured,
Associated,
Active,
Inactive,
Locked,
PendingCreate,
PendingRenew,
PendingTransfer,
PendingUpdate,
PendingDelete,
Other(String),
}Expand description
Registration status values defined in RFC 9083 §10.2.2.
Variants§
Validated
RenewProhibited
UpdateProhibited
TransferProhibited
DeleteProhibited
Proxy
Private
Removed
Obscured
Associated
Active
Inactive
Locked
PendingCreate
PendingRenew
PendingTransfer
PendingUpdate
PendingDelete
Other(String)
Unknown/extension status value — preserved as-is.
Trait Implementations§
Source§impl Clone for RdapStatus
impl Clone for RdapStatus
Source§fn clone(&self) -> RdapStatus
fn clone(&self) -> RdapStatus
Returns a duplicate 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 RdapStatus
impl Debug for RdapStatus
Source§impl<'de> Deserialize<'de> for RdapStatus
impl<'de> Deserialize<'de> for RdapStatus
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 RdapStatus
impl PartialEq for RdapStatus
Source§impl Serialize for RdapStatus
impl Serialize for RdapStatus
impl Eq for RdapStatus
impl StructuralPartialEq for RdapStatus
Auto Trait Implementations§
impl Freeze for RdapStatus
impl RefUnwindSafe for RdapStatus
impl Send for RdapStatus
impl Sync for RdapStatus
impl Unpin for RdapStatus
impl UnsafeUnpin for RdapStatus
impl UnwindSafe for RdapStatus
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