pub struct WebOverview {
pub available: Option<bool>,
pub pageviews: Option<i32>,
pub reason: Option<String>,
pub sessions: Option<i32>,
pub source: Option<String>,
pub visitors: Option<i32>,
}Fields§
§available: Option<bool>Available is false when the product-event table could not be read — the lens is reported missing rather than as zeros that look like real traffic.
pageviews: Option<i32>Pageviews is how many $pageview events landed in the window.
reason: Option<String>Reason says why the lens is unavailable. Omitted when it is available.
sessions: Option<i32>Sessions is how many distinct visits they span.
source: Option<String>Source is the warehouse table the lens read.
visitors: Option<i32>Visitors is how many distinct people those pageviews came from.
Implementations§
Source§impl WebOverview
impl WebOverview
pub fn new() -> WebOverview
Trait Implementations§
Source§impl Clone for WebOverview
impl Clone for WebOverview
Source§fn clone(&self) -> WebOverview
fn clone(&self) -> WebOverview
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 WebOverview
impl Debug for WebOverview
Source§impl Default for WebOverview
impl Default for WebOverview
Source§fn default() -> WebOverview
fn default() -> WebOverview
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebOverview
impl<'de> Deserialize<'de> for WebOverview
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
Source§impl PartialEq for WebOverview
impl PartialEq for WebOverview
Source§impl Serialize for WebOverview
impl Serialize for WebOverview
impl StructuralPartialEq for WebOverview
Auto Trait Implementations§
impl Freeze for WebOverview
impl RefUnwindSafe for WebOverview
impl Send for WebOverview
impl Sync for WebOverview
impl Unpin for WebOverview
impl UnsafeUnpin for WebOverview
impl UnwindSafe for WebOverview
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