pub struct AuthorResponse {
pub authors: Vec<Author>,
}Expand description
Response envelope for single-author read requests.
Fields§
Single-element vec containing the author.
Trait Implementations§
Source§impl Debug for AuthorResponse
impl Debug for AuthorResponse
Source§impl<'de> Deserialize<'de> for AuthorResponse
impl<'de> Deserialize<'de> for AuthorResponse
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 AuthorResponse
impl RefUnwindSafe for AuthorResponse
impl Send for AuthorResponse
impl Sync for AuthorResponse
impl Unpin for AuthorResponse
impl UnsafeUnpin for AuthorResponse
impl UnwindSafe for AuthorResponse
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