pub struct SeoReport {
pub total_agents: u32,
pub native_agents: u32,
pub relay_agents: u32,
pub agents_with_custom_seo: u32,
pub version: String,
}Expand description
Aggregate SEO report from /relay/seo/report.
Fields§
§total_agents: u32§native_agents: u32§relay_agents: u32§agents_with_custom_seo: u32§version: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for SeoReport
impl<'de> Deserialize<'de> for SeoReport
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 SeoReport
impl RefUnwindSafe for SeoReport
impl Send for SeoReport
impl Sync for SeoReport
impl Unpin for SeoReport
impl UnsafeUnpin for SeoReport
impl UnwindSafe for SeoReport
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