pub enum ReadingLog {
AlreadyRead,
CurrentlyReading,
WantToRead,
}
Variants§
Implementations§
Source§impl ReadingLog
impl ReadingLog
pub fn url(&self) -> &str
pub async fn retrieve_for( &self, client: &OpenLibraryClient, username: String, ) -> Result<Vec<ReadingLogEntry>, OpenLibraryError>
Trait Implementations§
Source§impl Clone for ReadingLog
impl Clone for ReadingLog
Source§fn clone(&self) -> ReadingLog
fn clone(&self) -> ReadingLog
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 moreAuto Trait Implementations§
impl Freeze for ReadingLog
impl RefUnwindSafe for ReadingLog
impl Send for ReadingLog
impl Sync for ReadingLog
impl Unpin for ReadingLog
impl UnwindSafe for ReadingLog
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