pub struct ReadingLog {
pub reading_log_entries: Vec<ReadingLogEntry>,
}Expand description
Response from the reading-log endpoints.
Fields§
§reading_log_entries: Vec<ReadingLogEntry>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 (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 ReadingLog
impl Debug for ReadingLog
Source§impl<'de> Deserialize<'de> for ReadingLog
impl<'de> Deserialize<'de> for ReadingLog
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
Auto Trait Implementations§
impl Freeze for ReadingLog
impl RefUnwindSafe for ReadingLog
impl Send for ReadingLog
impl Sync for ReadingLog
impl Unpin for ReadingLog
impl UnsafeUnpin 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