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