pub struct OfferProduct {
pub ean: String,
pub localized_name: LocalizedName,
pub is_available: bool,
}Fields§
§ean: String§localized_name: LocalizedName§is_available: boolTrait Implementations§
Source§impl Clone for OfferProduct
impl Clone for OfferProduct
Source§fn clone(&self) -> OfferProduct
fn clone(&self) -> OfferProduct
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 OfferProduct
impl Debug for OfferProduct
Source§impl Default for OfferProduct
impl Default for OfferProduct
Source§fn default() -> OfferProduct
fn default() -> OfferProduct
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OfferProduct
impl<'de> Deserialize<'de> for OfferProduct
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
Auto Trait Implementations§
impl Freeze for OfferProduct
impl RefUnwindSafe for OfferProduct
impl Send for OfferProduct
impl Sync for OfferProduct
impl Unpin for OfferProduct
impl UnsafeUnpin for OfferProduct
impl UnwindSafe for OfferProduct
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