pub struct RdapRemark {
pub title: Option<String>,
pub remark_type: Option<String>,
pub description: Vec<String>,
pub links: Vec<RdapLink>,
}Expand description
A remark (annotation) on a registration object.
Fields§
§title: Option<String>§remark_type: Option<String>§description: Vec<String>§links: Vec<RdapLink>Trait Implementations§
Source§impl Clone for RdapRemark
impl Clone for RdapRemark
Source§fn clone(&self) -> RdapRemark
fn clone(&self) -> RdapRemark
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 RdapRemark
impl Debug for RdapRemark
Source§impl<'de> Deserialize<'de> for RdapRemark
impl<'de> Deserialize<'de> for RdapRemark
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
Auto Trait Implementations§
impl Freeze for RdapRemark
impl RefUnwindSafe for RdapRemark
impl Send for RdapRemark
impl Sync for RdapRemark
impl Unpin for RdapRemark
impl UnsafeUnpin for RdapRemark
impl UnwindSafe for RdapRemark
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