pub struct DetectedItems {
pub items: Option<Vec<DetectedItemsItem>>,
pub rich_result_type: Option<String>,
}Expand description
Detected rich result items.
Fields§
§items: Option<Vec<DetectedItemsItem>>List of items.
rich_result_type: Option<String>Type of rich result.
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<'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
Auto Trait Implementations§
impl Freeze for DetectedItems
impl RefUnwindSafe for DetectedItems
impl Send for DetectedItems
impl Sync for DetectedItems
impl Unpin for DetectedItems
impl UnsafeUnpin 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