pub enum CollectionPageSubtypes {
CollectionPage(CollectionPage),
OrderedCollectionPage(OrderedCollectionPage),
}Variants§
CollectionPage(CollectionPage)
OrderedCollectionPage(OrderedCollectionPage)
Trait Implementations§
Source§impl Clone for CollectionPageSubtypes
impl Clone for CollectionPageSubtypes
Source§fn clone(&self) -> CollectionPageSubtypes
fn clone(&self) -> CollectionPageSubtypes
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 CollectionPageSubtypes
impl Debug for CollectionPageSubtypes
Source§impl<'de> Deserialize<'de> for CollectionPageSubtypes
impl<'de> Deserialize<'de> for CollectionPageSubtypes
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 From<CollectionPageSubtypes> for CollectionPage
impl From<CollectionPageSubtypes> for CollectionPage
Source§fn from(value: CollectionPageSubtypes) -> Self
fn from(value: CollectionPageSubtypes) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CollectionPageSubtypes
impl PartialEq for CollectionPageSubtypes
Source§impl Serialize for CollectionPageSubtypes
impl Serialize for CollectionPageSubtypes
impl StructuralPartialEq for CollectionPageSubtypes
Auto Trait Implementations§
impl Freeze for CollectionPageSubtypes
impl RefUnwindSafe for CollectionPageSubtypes
impl Send for CollectionPageSubtypes
impl Sync for CollectionPageSubtypes
impl Unpin for CollectionPageSubtypes
impl UnwindSafe for CollectionPageSubtypes
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