pub struct RespostaListaBibliotecas {
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 RespostaListaBibliotecas
impl Debug for RespostaListaBibliotecas
Source§impl<'de> Deserialize<'de> for RespostaListaBibliotecas
impl<'de> Deserialize<'de> for RespostaListaBibliotecas
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 RespostaListaBibliotecas
impl RefUnwindSafe for RespostaListaBibliotecas
impl Send for RespostaListaBibliotecas
impl Sync for RespostaListaBibliotecas
impl Unpin for RespostaListaBibliotecas
impl UnsafeUnpin for RespostaListaBibliotecas
impl UnwindSafe for RespostaListaBibliotecas
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