pub struct MapResponse {
pub success: bool,
pub links: Vec<SearchResultWeb>,
pub warning: Option<String>,
}Expand description
Response from map endpoint.
Fields§
§success: boolWhether the request was successful.
links: Vec<SearchResultWeb>Discovered links with metadata.
warning: Option<String>Warning message if any.
Trait Implementations§
Source§impl Debug for MapResponse
impl Debug for MapResponse
Source§impl<'de> Deserialize<'de> for MapResponse
impl<'de> Deserialize<'de> for MapResponse
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 MapResponse
impl RefUnwindSafe for MapResponse
impl Send for MapResponse
impl Sync for MapResponse
impl Unpin for MapResponse
impl UnsafeUnpin for MapResponse
impl UnwindSafe for MapResponse
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