pub struct SeoStats {
pub agent_id: String,
pub seo_grade: String,
pub seo_score: u32,
pub profiles: ProfileUrls,
pub schema_org: bool,
pub speakable_markup: bool,
pub og_tags: bool,
pub has_custom_seo_url: bool,
pub enhancement_summary: String,
pub recommendation: Option<String>,
}Expand description
Agent SEO stats from /relay/seo/stats/{id}.
Fields§
§agent_id: String§seo_grade: String§seo_score: u32§profiles: ProfileUrls§schema_org: bool§speakable_markup: bool§has_custom_seo_url: bool§enhancement_summary: String§recommendation: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for SeoStats
impl<'de> Deserialize<'de> for SeoStats
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 SeoStats
impl RefUnwindSafe for SeoStats
impl Send for SeoStats
impl Sync for SeoStats
impl Unpin for SeoStats
impl UnsafeUnpin for SeoStats
impl UnwindSafe for SeoStats
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