pub struct AuthorsResponse {
pub authors: Vec<Author>,
pub meta: Meta,
}Expand description
Response envelope for browse-authors requests.
Fields§
Authors returned by the API.
meta: MetaPagination metadata.
Trait Implementations§
Source§impl Debug for AuthorsResponse
impl Debug for AuthorsResponse
Source§impl<'de> Deserialize<'de> for AuthorsResponse
impl<'de> Deserialize<'de> for AuthorsResponse
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 AuthorsResponse
impl RefUnwindSafe for AuthorsResponse
impl Send for AuthorsResponse
impl Sync for AuthorsResponse
impl Unpin for AuthorsResponse
impl UnsafeUnpin for AuthorsResponse
impl UnwindSafe for AuthorsResponse
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