pub struct OrderedCollectionPage {
pub object_props: ObjectProperties,
pub collection_props: CollectionProperties,
pub collection_page_props: CollectionPageProperties,
pub ordered_collection_page_props: OrderedCollectionPageProperties,
/* private fields */
}
Expand description
Used to represent ordered subsets of items from an OrderedCollection
.
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
ordered_collection_page_props: OrderedCollectionPageProperties
Adds all valid ordered collection page properties to this struct
Implementations§
Source§impl OrderedCollectionPage
impl OrderedCollectionPage
Sourcepub fn full() -> Ext<OrderedCollectionPage, ApObjectProperties>
pub fn full() -> Ext<OrderedCollectionPage, ApObjectProperties>
Generate a fully extended type
This effect can be achieved with Self::new().extend(SomeExtension::default())
Trait Implementations§
Source§impl AsMut<CollectionPageProperties> for OrderedCollectionPage
impl AsMut<CollectionPageProperties> for OrderedCollectionPage
Source§fn as_mut(&mut self) -> &mut CollectionPageProperties
fn as_mut(&mut self) -> &mut CollectionPageProperties
Converts this type into a mutable reference of the (usually inferred) input type.
Source§impl AsMut<CollectionProperties> for OrderedCollectionPage
impl AsMut<CollectionProperties> for OrderedCollectionPage
Source§fn as_mut(&mut self) -> &mut CollectionProperties
fn as_mut(&mut self) -> &mut CollectionProperties
Converts this type into a mutable reference of the (usually inferred) input type.
Source§impl AsMut<ObjectProperties> for OrderedCollectionPage
impl AsMut<ObjectProperties> for OrderedCollectionPage
Source§fn as_mut(&mut self) -> &mut ObjectProperties
fn as_mut(&mut self) -> &mut ObjectProperties
Converts this type into a mutable reference of the (usually inferred) input type.
Source§impl AsMut<OrderedCollectionPageProperties> for OrderedCollectionPage
impl AsMut<OrderedCollectionPageProperties> for OrderedCollectionPage
Source§fn as_mut(&mut self) -> &mut OrderedCollectionPageProperties
fn as_mut(&mut self) -> &mut OrderedCollectionPageProperties
Converts this type into a mutable reference of the (usually inferred) input type.
Source§impl AsRef<CollectionPageProperties> for OrderedCollectionPage
impl AsRef<CollectionPageProperties> for OrderedCollectionPage
Source§fn as_ref(&self) -> &CollectionPageProperties
fn as_ref(&self) -> &CollectionPageProperties
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl AsRef<CollectionProperties> for OrderedCollectionPage
impl AsRef<CollectionProperties> for OrderedCollectionPage
Source§fn as_ref(&self) -> &CollectionProperties
fn as_ref(&self) -> &CollectionProperties
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl AsRef<ObjectProperties> for OrderedCollectionPage
impl AsRef<ObjectProperties> for OrderedCollectionPage
Source§fn as_ref(&self) -> &ObjectProperties
fn as_ref(&self) -> &ObjectProperties
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl AsRef<OrderedCollectionPageProperties> for OrderedCollectionPage
impl AsRef<OrderedCollectionPageProperties> for OrderedCollectionPage
Source§fn as_ref(&self) -> &OrderedCollectionPageProperties
fn as_ref(&self) -> &OrderedCollectionPageProperties
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl Clone for OrderedCollectionPage
impl Clone for OrderedCollectionPage
Source§fn clone(&self) -> OrderedCollectionPage
fn clone(&self) -> OrderedCollectionPage
Returns a copy 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 OrderedCollectionPage
impl Debug for OrderedCollectionPage
Source§impl Default for OrderedCollectionPage
impl Default for OrderedCollectionPage
Source§fn default() -> OrderedCollectionPage
fn default() -> OrderedCollectionPage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OrderedCollectionPage
impl<'de> Deserialize<'de> for OrderedCollectionPage
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 Serialize for OrderedCollectionPage
impl Serialize for OrderedCollectionPage
Source§impl TryFrom<OrderedCollectionPage> for BaseBox
impl TryFrom<OrderedCollectionPage> for BaseBox
Source§impl TryFrom<OrderedCollectionPage> for CollectionBox
impl TryFrom<OrderedCollectionPage> for CollectionBox
Source§impl TryFrom<OrderedCollectionPage> for ObjectBox
impl TryFrom<OrderedCollectionPage> for ObjectBox
impl Base for OrderedCollectionPage
impl Collection for OrderedCollectionPage
impl CollectionPage for OrderedCollectionPage
impl Object for OrderedCollectionPage
Auto Trait Implementations§
impl Freeze for OrderedCollectionPage
impl RefUnwindSafe for OrderedCollectionPage
impl Send for OrderedCollectionPage
impl Sync for OrderedCollectionPage
impl Unpin for OrderedCollectionPage
impl UnwindSafe for OrderedCollectionPage
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