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