pub struct JsonLdArticle {
pub headline: Option<String>,
pub description: Option<String>,
pub author: Option<String>,
pub date_published: Option<String>,
pub date_modified: Option<String>,
pub image: Option<String>,
pub word_count: Option<u64>,
}Expand description
Article data extracted from JSON-LD.
Fields§
§headline: Option<String>§description: Option<String>§date_published: Option<String>§date_modified: Option<String>§image: Option<String>§word_count: Option<u64>Trait Implementations§
Source§impl Clone for JsonLdArticle
impl Clone for JsonLdArticle
Source§fn clone(&self) -> JsonLdArticle
fn clone(&self) -> JsonLdArticle
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 JsonLdArticle
impl Debug for JsonLdArticle
Source§impl Default for JsonLdArticle
impl Default for JsonLdArticle
Source§fn default() -> JsonLdArticle
fn default() -> JsonLdArticle
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for JsonLdArticle
impl RefUnwindSafe for JsonLdArticle
impl Send for JsonLdArticle
impl Sync for JsonLdArticle
impl Unpin for JsonLdArticle
impl UnsafeUnpin for JsonLdArticle
impl UnwindSafe for JsonLdArticle
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