pub struct CostDollarsSearch {
pub neural: Option<f64>,
pub keyword: Option<f64>,
}Expand description
Represents the cost breakdown related to search. Fields are optional because only non-zero costs are included by the API.
Fields§
§neural: Option<f64>The cost in dollars for neural search.
keyword: Option<f64>The cost in dollars for keyword search.
Trait Implementations§
Source§impl Clone for CostDollarsSearch
impl Clone for CostDollarsSearch
Source§fn clone(&self) -> CostDollarsSearch
fn clone(&self) -> CostDollarsSearch
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 CostDollarsSearch
impl Debug for CostDollarsSearch
Source§impl Default for CostDollarsSearch
impl Default for CostDollarsSearch
Source§fn default() -> CostDollarsSearch
fn default() -> CostDollarsSearch
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CostDollarsSearch
impl<'de> Deserialize<'de> for CostDollarsSearch
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 CostDollarsSearch
impl RefUnwindSafe for CostDollarsSearch
impl Send for CostDollarsSearch
impl Sync for CostDollarsSearch
impl Unpin for CostDollarsSearch
impl UnsafeUnpin for CostDollarsSearch
impl UnwindSafe for CostDollarsSearch
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