pub struct MapsGroundingChunk {
pub uri: Url,
pub title: String,
pub place_id: Option<String>,
}Expand description
Maps-specific grounding chunk information
Fields§
§uri: UrlThe URI of the Maps source
title: StringThe title of the Maps source
place_id: Option<String>The place ID from Google Maps
Trait Implementations§
Source§impl Clone for MapsGroundingChunk
impl Clone for MapsGroundingChunk
Source§fn clone(&self) -> MapsGroundingChunk
fn clone(&self) -> MapsGroundingChunk
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MapsGroundingChunk
impl Debug for MapsGroundingChunk
Source§impl<'de> Deserialize<'de> for MapsGroundingChunk
impl<'de> Deserialize<'de> for MapsGroundingChunk
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 PartialEq for MapsGroundingChunk
impl PartialEq for MapsGroundingChunk
Source§impl Serialize for MapsGroundingChunk
impl Serialize for MapsGroundingChunk
impl StructuralPartialEq for MapsGroundingChunk
Auto Trait Implementations§
impl Freeze for MapsGroundingChunk
impl RefUnwindSafe for MapsGroundingChunk
impl Send for MapsGroundingChunk
impl Sync for MapsGroundingChunk
impl Unpin for MapsGroundingChunk
impl UnwindSafe for MapsGroundingChunk
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