pub struct PersonalOfferProductView {
pub ean: String,
pub name: String,
pub is_available: bool,
}Fields§
§ean: StringPass this as ean to add_to_cart.
name: String§is_available: boolfalse means the EAN is real but not buyable at this store right now.
Trait Implementations§
Source§impl Clone for PersonalOfferProductView
impl Clone for PersonalOfferProductView
Source§fn clone(&self) -> PersonalOfferProductView
fn clone(&self) -> PersonalOfferProductView
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 PersonalOfferProductView
impl Debug for PersonalOfferProductView
Source§impl From<PersonalOfferProduct> for PersonalOfferProductView
impl From<PersonalOfferProduct> for PersonalOfferProductView
Source§fn from(p: PersonalOfferProduct) -> Self
fn from(p: PersonalOfferProduct) -> Self
Converts to this type from the input type.
Source§impl JsonSchema for PersonalOfferProductView
impl JsonSchema for PersonalOfferProductView
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for PersonalOfferProductView
impl RefUnwindSafe for PersonalOfferProductView
impl Send for PersonalOfferProductView
impl Sync for PersonalOfferProductView
impl Unpin for PersonalOfferProductView
impl UnsafeUnpin for PersonalOfferProductView
impl UnwindSafe for PersonalOfferProductView
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