pub struct FunnelStep {
pub milestone_name: String,
pub position_ms: u64,
pub viewers_reached: u32,
pub conversion_from_prev: f32,
pub overall_rate: f32,
}Expand description
One step in the computed funnel.
Fields§
§milestone_name: String§position_ms: u64§viewers_reached: u32Number of viewers who reached this milestone.
conversion_from_prev: f32Conversion rate from the previous step (1.0 for the first step).
overall_rate: f32Fraction of all session starters who reached this step.
Trait Implementations§
Source§impl Clone for FunnelStep
impl Clone for FunnelStep
Source§fn clone(&self) -> FunnelStep
fn clone(&self) -> FunnelStep
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 moreAuto Trait Implementations§
impl Freeze for FunnelStep
impl RefUnwindSafe for FunnelStep
impl Send for FunnelStep
impl Sync for FunnelStep
impl Unpin for FunnelStep
impl UnsafeUnpin for FunnelStep
impl UnwindSafe for FunnelStep
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more