pub enum ReadingShelf {
WantToRead,
CurrentlyReading,
AlreadyRead,
}Expand description
Reading shelf identifier.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ReadingShelf
impl Clone for ReadingShelf
Source§fn clone(&self) -> ReadingShelf
fn clone(&self) -> ReadingShelf
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 moreimpl Copy for ReadingShelf
Source§impl Debug for ReadingShelf
impl Debug for ReadingShelf
impl Eq for ReadingShelf
Source§impl PartialEq for ReadingShelf
impl PartialEq for ReadingShelf
Source§fn eq(&self, other: &ReadingShelf) -> bool
fn eq(&self, other: &ReadingShelf) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ReadingShelf
Auto Trait Implementations§
impl Freeze for ReadingShelf
impl RefUnwindSafe for ReadingShelf
impl Send for ReadingShelf
impl Sync for ReadingShelf
impl Unpin for ReadingShelf
impl UnsafeUnpin for ReadingShelf
impl UnwindSafe for ReadingShelf
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