pub enum CollectionItem {
Collection(Box<LayerCollectionListing>),
Layer(Box<LayerListing>),
}Variants§
Collection(Box<LayerCollectionListing>)
Layer(Box<LayerListing>)
Trait Implementations§
Source§impl Clone for CollectionItem
impl Clone for CollectionItem
Source§fn clone(&self) -> CollectionItem
fn clone(&self) -> CollectionItem
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CollectionItem
impl Debug for CollectionItem
Source§impl Default for CollectionItem
impl Default for CollectionItem
Source§impl<'de> Deserialize<'de> for CollectionItem
impl<'de> Deserialize<'de> for CollectionItem
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 CollectionItem
impl PartialEq for CollectionItem
Source§fn eq(&self, other: &CollectionItem) -> bool
fn eq(&self, other: &CollectionItem) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CollectionItem
impl Serialize for CollectionItem
impl StructuralPartialEq for CollectionItem
Auto Trait Implementations§
impl Freeze for CollectionItem
impl RefUnwindSafe for CollectionItem
impl Send for CollectionItem
impl Sync for CollectionItem
impl Unpin for CollectionItem
impl UnsafeUnpin for CollectionItem
impl UnwindSafe for CollectionItem
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