pub struct LibraryListResponse {
pub results: Vec<LibrarySearchResult>,
}Expand description
Top-level response from the library search endpoint (GET /api/v1/search).
Fields§
§results: Vec<LibrarySearchResult>List of matching libraries.
Trait Implementations§
Source§impl Debug for LibraryListResponse
impl Debug for LibraryListResponse
Source§impl<'de> Deserialize<'de> for LibraryListResponse
impl<'de> Deserialize<'de> for LibraryListResponse
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 LibraryListResponse
impl RefUnwindSafe for LibraryListResponse
impl Send for LibraryListResponse
impl Sync for LibraryListResponse
impl Unpin for LibraryListResponse
impl UnsafeUnpin for LibraryListResponse
impl UnwindSafe for LibraryListResponse
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