pub enum ListItemType {
Thing,
Person,
Company,
Family,
Property,
Event,
}Expand description
A type of item in a user’s top 10, or hot 10 list on their profile. Note that when choosing items on the website
Variants§
Thing
A board game, board game expansion, or board game accessory.
Person
A person who is a board game designer, publisher, or artist.
Company
A company designers, or publishes, games.
Family
A certain family of games, can be a certain category, a certain component, or theme. Can also be an accessory family.
Property
A mechanic or category for a game. Mechanics include dice rolling, worker placement, and cooperative game. Categories include word game, and party game.
Event
A board game event or convention.
Trait Implementations§
Source§impl Clone for ListItemType
impl Clone for ListItemType
Source§fn clone(&self) -> ListItemType
fn clone(&self) -> ListItemType
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 ListItemType
impl Debug for ListItemType
Source§impl<'de> Deserialize<'de> for ListItemType
impl<'de> Deserialize<'de> for ListItemType
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 ListItemType
impl PartialEq for ListItemType
Source§fn eq(&self, other: &ListItemType) -> bool
fn eq(&self, other: &ListItemType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ListItemType
impl StructuralPartialEq for ListItemType
Auto Trait Implementations§
impl Freeze for ListItemType
impl RefUnwindSafe for ListItemType
impl Send for ListItemType
impl Sync for ListItemType
impl Unpin for ListItemType
impl UnsafeUnpin for ListItemType
impl UnwindSafe for ListItemType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.