pub struct DomainEntry {
pub domain: String,
pub description: Option<String>,
}Expand description
A domain entry with optional description.
Fields§
§domain: String§description: Option<String>Trait Implementations§
Source§impl Clone for DomainEntry
impl Clone for DomainEntry
Source§fn clone(&self) -> DomainEntry
fn clone(&self) -> DomainEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DomainEntry
impl Debug for DomainEntry
Source§impl<'de> Deserialize<'de> for DomainEntry
impl<'de> Deserialize<'de> for DomainEntry
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 DomainEntry
impl RefUnwindSafe for DomainEntry
impl Send for DomainEntry
impl Sync for DomainEntry
impl Unpin for DomainEntry
impl UnsafeUnpin for DomainEntry
impl UnwindSafe for DomainEntry
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