pub struct StoreShelf {
pub highlight_listing: Option<ProductListing>,
pub highlight_listing_id: Option<String>,
pub id: String,
pub listing_ids: Vec<String>,
pub listings: Option<Vec<ProductListing>>,
pub shelf_description: String,
pub shelf_layout: String,
pub shelf_title: String,
pub updated_at: String,
}Fields§
§highlight_listing: Option<ProductListing>§highlight_listing_id: Option<String>§id: String§listing_ids: Vec<String>§listings: Option<Vec<ProductListing>>§shelf_description: String§shelf_layout: String§shelf_title: String§updated_at: StringImplementations§
Trait Implementations§
Source§impl Clone for StoreShelf
impl Clone for StoreShelf
Source§fn clone(&self) -> StoreShelf
fn clone(&self) -> StoreShelf
Returns a duplicate of the value. Read more
1.0.0 · 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 StoreShelf
impl Debug for StoreShelf
Source§impl Default for StoreShelf
impl Default for StoreShelf
Source§fn default() -> StoreShelf
fn default() -> StoreShelf
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StoreShelf
impl<'de> Deserialize<'de> for StoreShelf
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
Source§impl PartialEq for StoreShelf
impl PartialEq for StoreShelf
Source§impl Serialize for StoreShelf
impl Serialize for StoreShelf
impl StructuralPartialEq for StoreShelf
Auto Trait Implementations§
impl Freeze for StoreShelf
impl RefUnwindSafe for StoreShelf
impl Send for StoreShelf
impl Sync for StoreShelf
impl Unpin for StoreShelf
impl UnwindSafe for StoreShelf
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