pub enum NoticeOrRemarkType {
ResultSetTruncatedDueToAuthorization,
ResultSetTruncatedDueToExcessiveLoad,
ResultSetTruncatedDueToUnexplainableReasons,
ObjectTruncatedDueToAuthorization,
ObjectTruncatedDueToExcessiveLoad,
ObjectTruncatedDueToUnexplainableReasons,
ObjectRedactedDueToAuthorization,
ObjectTruncatedDueToServerPolicy,
ResponseTruncatedDueToAuthorization,
}
Expand description
https://tools.ietf.org/html/rfc7483#section-10.2.1 and https://www.iana.org/assignments/rdap-json-values/rdap-json-values.xhtml
Variants§
ResultSetTruncatedDueToAuthorization
ResultSetTruncatedDueToExcessiveLoad
ResultSetTruncatedDueToUnexplainableReasons
ObjectTruncatedDueToAuthorization
ObjectTruncatedDueToExcessiveLoad
ObjectTruncatedDueToUnexplainableReasons
ObjectRedactedDueToAuthorization
Value from ‘icann_rdap_response_profile_0’ extension.
ObjectTruncatedDueToServerPolicy
ResponseTruncatedDueToAuthorization
Non standard value from ‘abudhabi’ domain registry.
Implementations§
Source§impl NoticeOrRemarkType
impl NoticeOrRemarkType
pub fn serialize<__S>(
__self: &NoticeOrRemarkType,
__serializer: __S,
) -> Result<__S::Ok, __S::Error>where
__S: Serializer,
Source§impl<'de> NoticeOrRemarkType
impl<'de> NoticeOrRemarkType
pub fn deserialize<__D>(
__deserializer: __D,
) -> Result<NoticeOrRemarkType, __D::Error>where
__D: Deserializer<'de>,
Trait Implementations§
Source§impl Clone for NoticeOrRemarkType
impl Clone for NoticeOrRemarkType
Source§fn clone(&self) -> NoticeOrRemarkType
fn clone(&self) -> NoticeOrRemarkType
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 NoticeOrRemarkType
impl Debug for NoticeOrRemarkType
Source§impl<'de> Deserialize<'de> for NoticeOrRemarkType
impl<'de> Deserialize<'de> for NoticeOrRemarkType
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 NoticeOrRemarkType
impl PartialEq for NoticeOrRemarkType
Source§impl Serialize for NoticeOrRemarkType
impl Serialize for NoticeOrRemarkType
impl Copy for NoticeOrRemarkType
impl StructuralPartialEq for NoticeOrRemarkType
Auto Trait Implementations§
impl Freeze for NoticeOrRemarkType
impl RefUnwindSafe for NoticeOrRemarkType
impl Send for NoticeOrRemarkType
impl Sync for NoticeOrRemarkType
impl Unpin for NoticeOrRemarkType
impl UnwindSafe for NoticeOrRemarkType
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