pub struct PersonalOffersView {
pub store_id: String,
pub offers: Vec<PersonalOfferView>,
}Fields§
§store_id: StringThe store the offers are scoped to. Measured against two real stores: the sets differ (one was a strict superset of the other) rather than being identical everywhere, so this is worth echoing back rather than assuming the caller remembers which store a cached-looking result came from.
offers: Vec<PersonalOfferView>Trait Implementations§
Source§impl Clone for PersonalOffersView
impl Clone for PersonalOffersView
Source§fn clone(&self) -> PersonalOffersView
fn clone(&self) -> PersonalOffersView
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 PersonalOffersView
impl Debug for PersonalOffersView
Source§impl JsonSchema for PersonalOffersView
impl JsonSchema for PersonalOffersView
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 PersonalOffersView
impl RefUnwindSafe for PersonalOffersView
impl Send for PersonalOffersView
impl Sync for PersonalOffersView
impl Unpin for PersonalOffersView
impl UnsafeUnpin for PersonalOffersView
impl UnwindSafe for PersonalOffersView
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