Struct amazon_sp_product_fees::models::fees_estimate::FeesEstimate
source · [−]pub struct FeesEstimate {
pub time_of_fees_estimation: String,
pub total_fees_estimate: Option<Box<MoneyType>>,
pub fee_detail_list: Option<Vec<FeeDetail>>,
}Expand description
FeesEstimate : The total estimated fees for an item and a list of details.
Fields
time_of_fees_estimation: StringThe time at which the fees were estimated. This defaults to the time the request is made.
total_fees_estimate: Option<Box<MoneyType>>fee_detail_list: Option<Vec<FeeDetail>>A list of other fees that contribute to a given fee.
Implementations
sourceimpl FeesEstimate
impl FeesEstimate
sourcepub fn new(time_of_fees_estimation: String) -> FeesEstimate
pub fn new(time_of_fees_estimation: String) -> FeesEstimate
The total estimated fees for an item and a list of details.
Trait Implementations
sourceimpl Clone for FeesEstimate
impl Clone for FeesEstimate
sourcefn clone(&self) -> FeesEstimate
fn clone(&self) -> FeesEstimate
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 FeesEstimate
impl Debug for FeesEstimate
sourceimpl Default for FeesEstimate
impl Default for FeesEstimate
sourcefn default() -> FeesEstimate
fn default() -> FeesEstimate
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for FeesEstimate
impl<'de> Deserialize<'de> for FeesEstimate
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<FeesEstimate> for FeesEstimate
impl PartialEq<FeesEstimate> for FeesEstimate
sourcefn eq(&self, other: &FeesEstimate) -> bool
fn eq(&self, other: &FeesEstimate) -> bool
sourceimpl Serialize for FeesEstimate
impl Serialize for FeesEstimate
impl StructuralPartialEq for FeesEstimate
Auto Trait Implementations
impl RefUnwindSafe for FeesEstimate
impl Send for FeesEstimate
impl Sync for FeesEstimate
impl Unpin for FeesEstimate
impl UnwindSafe for FeesEstimate
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