pub struct PageExtraction {
pub url: String,
pub title: String,
pub extracted: Value,
}Expand description
Extraction from a single page.
Fields§
§url: StringPage URL.
title: StringPage title.
extracted: ValueExtracted data.
Trait Implementations§
Source§impl Clone for PageExtraction
impl Clone for PageExtraction
Source§fn clone(&self) -> PageExtraction
fn clone(&self) -> PageExtraction
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 PageExtraction
impl Debug for PageExtraction
Source§impl<'de> Deserialize<'de> for PageExtraction
impl<'de> Deserialize<'de> for PageExtraction
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 PageExtraction
impl RefUnwindSafe for PageExtraction
impl Send for PageExtraction
impl Sync for PageExtraction
impl Unpin for PageExtraction
impl UnwindSafe for PageExtraction
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