pub struct Contacts {
pub admin: Option<Box<Registrant>>,
pub billing: Option<Box<Registrant>>,
pub registrant: Option<Box<Registrant>>,
pub tech: Option<Box<Registrant>>,
}Fields§
§admin: Option<Box<Registrant>>who administers it
billing: Option<Box<Registrant>>who is reached about payment
registrant: Option<Box<Registrant>>who owns the domain
tech: Option<Box<Registrant>>who is reached about technical matters
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Contacts
impl<'de> Deserialize<'de> for Contacts
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
impl StructuralPartialEq for Contacts
Auto Trait Implementations§
impl Freeze for Contacts
impl RefUnwindSafe for Contacts
impl Send for Contacts
impl Sync for Contacts
impl Unpin for Contacts
impl UnsafeUnpin for Contacts
impl UnwindSafe for Contacts
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