pub struct Domain {Show 17 fields
pub handle: Option<String>,
pub entities: Vec<Entity>,
pub links: Option<Vec<Link>>,
pub variants: Option<Vec<Variant>>,
pub nameservers: Option<Vec<Nameserver>>,
pub secure_dns: Option<SecureDns>,
pub remarks: Option<NoticesOrRemarks>,
pub events: Events,
pub network: Option<IpNetwork>,
pub rdap_conformance: Option<Vec<String>>,
pub notices: Option<NoticesOrRemarks>,
pub port43: Option<String>,
pub status: Option<Vec<String>>,
pub lang: Option<String>,
pub object_class_name: String,
pub fred_keyset: Option<FredKeyset>,
pub fred_nsset: Option<FredNsset>,
}
Expand description
https://tools.ietf.org/html/rfc7483#section-5.3
Fields§
§handle: Option<String>
§entities: Vec<Entity>
§links: Option<Vec<Link>>
§variants: Option<Vec<Variant>>
§nameservers: Option<Vec<Nameserver>>
§secure_dns: Option<SecureDns>
§remarks: Option<NoticesOrRemarks>
§events: Events
§network: Option<IpNetwork>
§rdap_conformance: Option<Vec<String>>
§notices: Option<NoticesOrRemarks>
§port43: Option<String>
§status: Option<Vec<String>>
§lang: Option<String>
§object_class_name: String
§fred_keyset: Option<FredKeyset>
§fred_nsset: Option<FredNsset>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Domain
impl<'de> Deserialize<'de> for Domain
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 Domain
impl RefUnwindSafe for Domain
impl Send for Domain
impl Sync for Domain
impl Unpin for Domain
impl UnwindSafe for Domain
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