pub struct DomainSearchResponseV2 {
pub domain: String,
pub company_name: String,
pub format: String,
pub confidence: String,
pub did_you_mean: String,
pub failure_reason: String,
pub other_domain_formats: Vec<DomainFormats>,
}Expand description
Response structure for the new domain_search_v2 API endpoint.
This structure matches the domain search API response format which includes
format, confidence, and other_domain_formats fields.
Fields§
§domain: String§company_name: String§format: String§confidence: String§did_you_mean: String§failure_reason: String§other_domain_formats: Vec<DomainFormats>Trait Implementations§
Source§impl Clone for DomainSearchResponseV2
impl Clone for DomainSearchResponseV2
Source§fn clone(&self) -> DomainSearchResponseV2
fn clone(&self) -> DomainSearchResponseV2
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 DomainSearchResponseV2
impl Debug for DomainSearchResponseV2
Source§impl<'de> Deserialize<'de> for DomainSearchResponseV2
impl<'de> Deserialize<'de> for DomainSearchResponseV2
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 DomainSearchResponseV2
impl RefUnwindSafe for DomainSearchResponseV2
impl Send for DomainSearchResponseV2
impl Sync for DomainSearchResponseV2
impl Unpin for DomainSearchResponseV2
impl UnwindSafe for DomainSearchResponseV2
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