pub struct DetectedElements {
pub tables: Vec<TableElement>,
pub forms: Vec<FormElement>,
pub dropdowns: Vec<DropdownElement>,
pub pagination: Option<PaginationElement>,
pub downloads: Vec<DownloadLink>,
pub contacts: ContactInfo,
pub interactive: Vec<InteractiveElement>,
pub media: MediaElements,
pub structured_data: Vec<StructuredData>,
}
Fields§
§tables: Vec<TableElement>
§forms: Vec<FormElement>
§dropdowns: Vec<DropdownElement>
§pagination: Option<PaginationElement>
§downloads: Vec<DownloadLink>
§contacts: ContactInfo
§interactive: Vec<InteractiveElement>
§media: MediaElements
§structured_data: Vec<StructuredData>
Trait Implementations§
Source§impl Clone for DetectedElements
impl Clone for DetectedElements
Source§fn clone(&self) -> DetectedElements
fn clone(&self) -> DetectedElements
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 DetectedElements
impl Debug for DetectedElements
Source§impl<'de> Deserialize<'de> for DetectedElements
impl<'de> Deserialize<'de> for DetectedElements
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 DetectedElements
impl RefUnwindSafe for DetectedElements
impl Send for DetectedElements
impl Sync for DetectedElements
impl Unpin for DetectedElements
impl UnwindSafe for DetectedElements
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