pub struct UnorderedCollectionPage {
pub object_props: ObjectProperties,
pub collection_props: CollectionProperties,
pub collection_page_props: CollectionPageProperties,
/* private fields */
}
Expand description
Used to represent distinct subsets of items from a Collection
.
Fields§
§object_props: ObjectProperties
Adds all valid object properties to this struct
collection_props: CollectionProperties
Adds all valid collection properties to this struct
collection_page_props: CollectionPageProperties
Adds all valid collection page properties to this struct
Trait Implementations§
Source§impl Clone for UnorderedCollectionPage
impl Clone for UnorderedCollectionPage
Source§fn clone(&self) -> UnorderedCollectionPage
fn clone(&self) -> UnorderedCollectionPage
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 CollectionExt for UnorderedCollectionPage
impl CollectionExt for UnorderedCollectionPage
fn props(&self) -> &CollectionProperties
fn props_mut(&mut self) -> &mut CollectionProperties
Source§impl CollectionPageExt for UnorderedCollectionPage
impl CollectionPageExt for UnorderedCollectionPage
fn props(&self) -> &CollectionPageProperties
fn props_mut(&mut self) -> &mut CollectionPageProperties
Source§impl Debug for UnorderedCollectionPage
impl Debug for UnorderedCollectionPage
Source§impl Default for UnorderedCollectionPage
impl Default for UnorderedCollectionPage
Source§fn default() -> UnorderedCollectionPage
fn default() -> UnorderedCollectionPage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UnorderedCollectionPage
impl<'de> Deserialize<'de> for UnorderedCollectionPage
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 ObjectExt for UnorderedCollectionPage
impl ObjectExt for UnorderedCollectionPage
fn props(&self) -> &ObjectProperties
fn props_mut(&mut self) -> &mut ObjectProperties
Source§impl Serialize for UnorderedCollectionPage
impl Serialize for UnorderedCollectionPage
impl Collection for UnorderedCollectionPage
impl CollectionPage for UnorderedCollectionPage
impl Object for UnorderedCollectionPage
Auto Trait Implementations§
impl Freeze for UnorderedCollectionPage
impl RefUnwindSafe for UnorderedCollectionPage
impl Send for UnorderedCollectionPage
impl Sync for UnorderedCollectionPage
impl Unpin for UnorderedCollectionPage
impl UnwindSafe for UnorderedCollectionPage
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