pub struct AuthorResponse {
pub num_found: i32,
pub start: i32,
pub num_found_exact: bool,
pub docs: Vec<Author>,
}
Fields§
§num_found: i32
§start: i32
§num_found_exact: bool
§docs: Vec<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
Source§impl Serialize for AuthorResponse
impl Serialize for AuthorResponse
impl OpenLibraryModel for AuthorResponse
Auto Trait Implementations§
impl Freeze for AuthorResponse
impl RefUnwindSafe for AuthorResponse
impl Send for AuthorResponse
impl Sync for AuthorResponse
impl Unpin 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