pub struct PricingCoverage {
pub priced_rows: usize,
pub missing_price_rows: usize,
pub unknown_model_rows: usize,
}Fields§
§priced_rows: usize§missing_price_rows: usize§unknown_model_rows: usizeTrait Implementations§
Source§impl Clone for PricingCoverage
impl Clone for PricingCoverage
Source§fn clone(&self) -> PricingCoverage
fn clone(&self) -> PricingCoverage
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 PricingCoverage
impl Debug for PricingCoverage
Source§impl Default for PricingCoverage
impl Default for PricingCoverage
Source§fn default() -> PricingCoverage
fn default() -> PricingCoverage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PricingCoverage
impl<'de> Deserialize<'de> for PricingCoverage
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
impl Eq for PricingCoverage
Source§impl PartialEq for PricingCoverage
impl PartialEq for PricingCoverage
Source§fn eq(&self, other: &PricingCoverage) -> bool
fn eq(&self, other: &PricingCoverage) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PricingCoverage
impl Serialize for PricingCoverage
impl StructuralPartialEq for PricingCoverage
Auto Trait Implementations§
impl Freeze for PricingCoverage
impl RefUnwindSafe for PricingCoverage
impl Send for PricingCoverage
impl Sync for PricingCoverage
impl Unpin for PricingCoverage
impl UnsafeUnpin for PricingCoverage
impl UnwindSafe for PricingCoverage
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