pub struct AuthorPapersResponse {
pub offset: Option<u64>,
pub next: Option<u64>,
pub data: Vec<Paper>,
}Fields§
§offset: Option<u64>§next: Option<u64>§data: Vec<Paper>Trait Implementations§
Source§impl Clone for AuthorPapersResponse
impl Clone for AuthorPapersResponse
Source§fn clone(&self) -> AuthorPapersResponse
fn clone(&self) -> AuthorPapersResponse
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 moreSource§impl Debug for AuthorPapersResponse
impl Debug for AuthorPapersResponse
Source§impl Default for AuthorPapersResponse
impl Default for AuthorPapersResponse
Source§fn default() -> AuthorPapersResponse
fn default() -> AuthorPapersResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuthorPapersResponse
impl<'de> Deserialize<'de> for AuthorPapersResponse
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 AuthorPapersResponse
impl RefUnwindSafe for AuthorPapersResponse
impl Send for AuthorPapersResponse
impl Sync for AuthorPapersResponse
impl Unpin for AuthorPapersResponse
impl UnwindSafe for AuthorPapersResponse
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