pub struct AnalyticsView {
pub funnel: Option<Box<Funnel>>,
pub recommendations: Option<Vec<String>>,
}Fields§
§funnel: Option<Box<Funnel>>Funnel is the org’s trailing-30-day traffic → signups → orders from the shared analytics warehouse; available is false when it has emitted nothing.
recommendations: Option<Vec<String>>Recommendations are the next-best GTM actions derived from that funnel.
Implementations§
Source§impl AnalyticsView
impl AnalyticsView
pub fn new() -> AnalyticsView
Trait Implementations§
Source§impl Clone for AnalyticsView
impl Clone for AnalyticsView
Source§fn clone(&self) -> AnalyticsView
fn clone(&self) -> AnalyticsView
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 AnalyticsView
impl Debug for AnalyticsView
Source§impl Default for AnalyticsView
impl Default for AnalyticsView
Source§fn default() -> AnalyticsView
fn default() -> AnalyticsView
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AnalyticsView
impl<'de> Deserialize<'de> for AnalyticsView
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 AnalyticsView
impl PartialEq for AnalyticsView
Source§impl Serialize for AnalyticsView
impl Serialize for AnalyticsView
impl StructuralPartialEq for AnalyticsView
Auto Trait Implementations§
impl Freeze for AnalyticsView
impl RefUnwindSafe for AnalyticsView
impl Send for AnalyticsView
impl Sync for AnalyticsView
impl Unpin for AnalyticsView
impl UnsafeUnpin for AnalyticsView
impl UnwindSafe for AnalyticsView
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