pub struct ExtractedContent {
pub title: Option<String>,
pub author: Option<String>,
pub published: Option<String>,
pub content: Option<String>,
pub content_html: Option<String>,
pub variables: Option<ExtractorVariables>,
}Expand description
Content extracted by site-specific extractors
Fields§
§title: Option<String>Title override
Author override
published: Option<String>Published date override
content: Option<String>Text content
content_html: Option<String>HTML content
variables: Option<ExtractorVariables>Additional variables
Trait Implementations§
Source§impl Clone for ExtractedContent
impl Clone for ExtractedContent
Source§fn clone(&self) -> ExtractedContent
fn clone(&self) -> ExtractedContent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ExtractedContent
impl Debug for ExtractedContent
Source§impl Default for ExtractedContent
impl Default for ExtractedContent
Source§fn default() -> ExtractedContent
fn default() -> ExtractedContent
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ExtractedContent
impl RefUnwindSafe for ExtractedContent
impl Send for ExtractedContent
impl Sync for ExtractedContent
impl Unpin for ExtractedContent
impl UnsafeUnpin for ExtractedContent
impl UnwindSafe for ExtractedContent
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