Struct instant_epp::domain::DomainAuthInfo
source · pub struct DomainAuthInfo<'a> {
pub password: Cow<'a, str>,
}Expand description
The <authInfo> tag for domain and contact transactions
Fields§
§password: Cow<'a, str>The <pw> tag under <authInfo>
Implementations§
Trait Implementations§
source§impl<'a> Clone for DomainAuthInfo<'a>
impl<'a> Clone for DomainAuthInfo<'a>
source§fn clone(&self) -> DomainAuthInfo<'a>
fn clone(&self) -> DomainAuthInfo<'a>
Returns a copy 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<'a> Debug for DomainAuthInfo<'a>
impl<'a> Debug for DomainAuthInfo<'a>
source§impl<'a, 'xml> FromXml<'xml> for DomainAuthInfo<'a>
impl<'a, 'xml> FromXml<'xml> for DomainAuthInfo<'a>
fn matches(id: Id<'_>, field: Option<Id<'_>>) -> bool
fn deserialize<'cx>( into: &mut Self::Accumulator, field: &'static str, deserializer: &mut Deserializer<'cx, 'xml> ) -> Result<(), Error>
type Accumulator = Option<DomainAuthInfo<'a>>
const KIND: Kind = ::instant_xml::Kind::Element
Auto Trait Implementations§
impl<'a> RefUnwindSafe for DomainAuthInfo<'a>
impl<'a> Send for DomainAuthInfo<'a>
impl<'a> Sync for DomainAuthInfo<'a>
impl<'a> Unpin for DomainAuthInfo<'a>
impl<'a> UnwindSafe for DomainAuthInfo<'a>
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