pub struct RawProductFeedLine {
pub sku: Sku,
pub channel: SalesChannel,
pub price: Money,
pub currency: Currency,
pub stock: Quantity,
pub stock_state: RawStockState,
pub price_policy: RawChannelPricePolicy,
}Fields§
§sku: Sku§channel: SalesChannel§price: Money§currency: Currency§stock: Quantity§stock_state: RawStockState§price_policy: RawChannelPricePolicyTrait Implementations§
Source§impl Clone for RawProductFeedLine
impl Clone for RawProductFeedLine
Source§fn clone(&self) -> RawProductFeedLine
fn clone(&self) -> RawProductFeedLine
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 RawProductFeedLine
impl Debug for RawProductFeedLine
Source§impl PartialEq for RawProductFeedLine
impl PartialEq for RawProductFeedLine
Source§fn eq(&self, other: &RawProductFeedLine) -> bool
fn eq(&self, other: &RawProductFeedLine) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for RawProductFeedLine
impl Eq for RawProductFeedLine
impl StructuralPartialEq for RawProductFeedLine
Auto Trait Implementations§
impl Freeze for RawProductFeedLine
impl RefUnwindSafe for RawProductFeedLine
impl Send for RawProductFeedLine
impl Sync for RawProductFeedLine
impl Unpin for RawProductFeedLine
impl UnsafeUnpin for RawProductFeedLine
impl UnwindSafe for RawProductFeedLine
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