pub struct MarketOffer {
pub id: i64,
pub node_id: i64,
pub description: String,
pub price: f64,
pub currency: String,
pub seller_id: i64,
pub seller_name: String,
pub seller_online: bool,
pub seller_rating: Option<f64>,
pub seller_reviews: u32,
pub is_promo: bool,
}Fields§
§id: i64§node_id: i64§description: String§price: f64§currency: String§seller_id: i64§seller_name: String§seller_online: bool§seller_rating: Option<f64>§seller_reviews: u32§is_promo: boolTrait Implementations§
Source§impl Clone for MarketOffer
impl Clone for MarketOffer
Source§fn clone(&self) -> MarketOffer
fn clone(&self) -> MarketOffer
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 moreAuto Trait Implementations§
impl Freeze for MarketOffer
impl RefUnwindSafe for MarketOffer
impl Send for MarketOffer
impl Sync for MarketOffer
impl Unpin for MarketOffer
impl UnwindSafe for MarketOffer
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