pub struct ListingComparison {
pub schema: String,
pub generated_at: u64,
pub entry_count: u64,
pub rows: Vec<ListingComparisonRow>,
pub currency_consistent: bool,
}Expand description
Normalized comparison of a set of Listing entries.
Fields§
§schema: String§generated_at: u64§entry_count: u64§rows: Vec<ListingComparisonRow>§currency_consistent: booltrue when every non-empty row shares the same price currency.
Trait Implementations§
Source§impl Clone for ListingComparison
impl Clone for ListingComparison
Source§fn clone(&self) -> ListingComparison
fn clone(&self) -> ListingComparison
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 ListingComparison
impl Debug for ListingComparison
Source§impl<'de> Deserialize<'de> for ListingComparison
impl<'de> Deserialize<'de> for ListingComparison
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 ListingComparison
impl PartialEq for ListingComparison
Source§impl Serialize for ListingComparison
impl Serialize for ListingComparison
impl StructuralPartialEq for ListingComparison
Auto Trait Implementations§
impl Freeze for ListingComparison
impl RefUnwindSafe for ListingComparison
impl Send for ListingComparison
impl Sync for ListingComparison
impl Unpin for ListingComparison
impl UnsafeUnpin for ListingComparison
impl UnwindSafe for ListingComparison
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