pub struct PriceToEstimateFees {
pub listing_price: Box<MoneyType>,
pub shipping: Option<Box<MoneyType>>,
pub points: Option<Box<Points>>,
}Expand description
PriceToEstimateFees : Price information for an item, used to estimate fees.
Fields
listing_price: Box<MoneyType>shipping: Option<Box<MoneyType>>points: Option<Box<Points>>Implementations
sourceimpl PriceToEstimateFees
impl PriceToEstimateFees
sourcepub fn new(listing_price: MoneyType) -> PriceToEstimateFees
pub fn new(listing_price: MoneyType) -> PriceToEstimateFees
Price information for an item, used to estimate fees.
Trait Implementations
sourceimpl Clone for PriceToEstimateFees
impl Clone for PriceToEstimateFees
sourcefn clone(&self) -> PriceToEstimateFees
fn clone(&self) -> PriceToEstimateFees
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for PriceToEstimateFees
impl Debug for PriceToEstimateFees
sourceimpl Default for PriceToEstimateFees
impl Default for PriceToEstimateFees
sourcefn default() -> PriceToEstimateFees
fn default() -> PriceToEstimateFees
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for PriceToEstimateFees
impl<'de> Deserialize<'de> for PriceToEstimateFees
sourcefn 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
sourceimpl PartialEq<PriceToEstimateFees> for PriceToEstimateFees
impl PartialEq<PriceToEstimateFees> for PriceToEstimateFees
sourcefn eq(&self, other: &PriceToEstimateFees) -> bool
fn eq(&self, other: &PriceToEstimateFees) -> bool
sourceimpl Serialize for PriceToEstimateFees
impl Serialize for PriceToEstimateFees
impl StructuralPartialEq for PriceToEstimateFees
Auto Trait Implementations
impl RefUnwindSafe for PriceToEstimateFees
impl Send for PriceToEstimateFees
impl Sync for PriceToEstimateFees
impl Unpin for PriceToEstimateFees
impl UnwindSafe for PriceToEstimateFees
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more