pub struct MapsChunk {
pub uri: String,
pub title: String,
pub text: String,
pub place_id: String,
pub place_answer_sources: Option<PlaceAnswerSources>,
}Expand description
Grounding chunk from Google Maps.
Fields§
§uri: String§title: String§text: String§place_id: String§place_answer_sources: Option<PlaceAnswerSources>Trait Implementations§
Source§impl<'de> Deserialize<'de> for MapsChunk
impl<'de> Deserialize<'de> for MapsChunk
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 MapsChunk
impl RefUnwindSafe for MapsChunk
impl Send for MapsChunk
impl Sync for MapsChunk
impl Unpin for MapsChunk
impl UnsafeUnpin for MapsChunk
impl UnwindSafe for MapsChunk
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