pub struct DetectedItems {
pub items: Option<Vec<Item>>,
pub rich_result_type: Option<String>,
}Expand description
Rich Results items grouped by type.
This type is not used in any activity, and only used as part of another schema.
Fields§
§items: Option<Vec<Item>>List of Rich Results items.
rich_result_type: Option<String>Rich Results type
Trait Implementations§
Source§impl Clone for DetectedItems
impl Clone for DetectedItems
Source§fn clone(&self) -> DetectedItems
fn clone(&self) -> DetectedItems
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 DetectedItems
impl Debug for DetectedItems
Source§impl Default for DetectedItems
impl Default for DetectedItems
Source§fn default() -> DetectedItems
fn default() -> DetectedItems
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DetectedItems
impl<'de> Deserialize<'de> for DetectedItems
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 Serialize for DetectedItems
impl Serialize for DetectedItems
impl Part for DetectedItems
Auto Trait Implementations§
impl Freeze for DetectedItems
impl RefUnwindSafe for DetectedItems
impl Send for DetectedItems
impl Sync for DetectedItems
impl Unpin for DetectedItems
impl UnwindSafe for DetectedItems
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