pub struct Whois {
pub contact_email: String,
pub contacts: Vec<Contact>,
pub created_date: String,
pub domain: String,
pub endpoint: String,
pub expires_date: String,
pub name_servers: Vec<String>,
pub private_registration: bool,
pub registrar_name: String,
pub status: String,
pub updated_date: String,
}
Fields§
§contact_email: String
§contacts: Vec<Contact>
§created_date: String
§domain: String
§endpoint: String
§expires_date: String
§name_servers: Vec<String>
§private_registration: bool
§registrar_name: String
§status: String
§updated_date: String
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Whois
impl<'de> Deserialize<'de> for Whois
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 Whois
impl RefUnwindSafe for Whois
impl Send for Whois
impl Sync for Whois
impl Unpin for Whois
impl UnwindSafe for Whois
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