pub struct SuggestionAllOf {
pub domain: Option<String>,
pub subdomain: Option<String>,
pub zone: Option<String>,
pub path: Option<String>,
}Fields§
§domain: Option<String>The suggested domain, consisting of a subdomain and zone.
subdomain: Option<String>The subdomain of the suggested domain.
zone: Option<String>The zone of the suggested domain.
path: Option<String>If present, the path is to be appended to the domain to complete the suggestion.
Implementations§
Source§impl SuggestionAllOf
impl SuggestionAllOf
pub fn new() -> SuggestionAllOf
Trait Implementations§
Source§impl Clone for SuggestionAllOf
impl Clone for SuggestionAllOf
Source§fn clone(&self) -> SuggestionAllOf
fn clone(&self) -> SuggestionAllOf
Returns a duplicate 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 Debug for SuggestionAllOf
impl Debug for SuggestionAllOf
Source§impl Default for SuggestionAllOf
impl Default for SuggestionAllOf
Source§fn default() -> SuggestionAllOf
fn default() -> SuggestionAllOf
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SuggestionAllOf
impl<'de> Deserialize<'de> for SuggestionAllOf
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
Source§impl PartialEq for SuggestionAllOf
impl PartialEq for SuggestionAllOf
Source§impl Serialize for SuggestionAllOf
impl Serialize for SuggestionAllOf
impl StructuralPartialEq for SuggestionAllOf
Auto Trait Implementations§
impl Freeze for SuggestionAllOf
impl RefUnwindSafe for SuggestionAllOf
impl Send for SuggestionAllOf
impl Sync for SuggestionAllOf
impl Unpin for SuggestionAllOf
impl UnwindSafe for SuggestionAllOf
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