pub struct ArticleSchema {
pub headline: Option<String>,
pub author: Option<String>,
pub date_published: Option<String>,
pub date_modified: Option<String>,
pub description: Option<String>,
pub image: Option<String>,
}Expand description
Article schema from structured data
Fields§
§headline: Option<String>Article headline
Article author
date_published: Option<String>Publication date
date_modified: Option<String>Last modification date
description: Option<String>Article description
image: Option<String>Article main image URL
Trait Implementations§
Source§impl Clone for ArticleSchema
impl Clone for ArticleSchema
Source§fn clone(&self) -> ArticleSchema
fn clone(&self) -> ArticleSchema
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 moreAuto Trait Implementations§
impl Freeze for ArticleSchema
impl RefUnwindSafe for ArticleSchema
impl Send for ArticleSchema
impl Sync for ArticleSchema
impl Unpin for ArticleSchema
impl UnwindSafe for ArticleSchema
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