pub enum AttributionModelKind {
FirstTouch,
LastTouch,
Linear,
TimeDecay,
PositionBased,
Custom(String),
}Expand description
Attribution model kind label.
Variants§
FirstTouch
First-touch model label.
LastTouch
Last-touch model label.
Linear
Linear model label.
TimeDecay
Time-decay model label.
PositionBased
Position-based model label.
Custom(String)
Custom model label.
Implementations§
Trait Implementations§
Source§impl Clone for AttributionModelKind
impl Clone for AttributionModelKind
Source§fn clone(&self) -> AttributionModelKind
fn clone(&self) -> AttributionModelKind
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 AttributionModelKind
impl Debug for AttributionModelKind
Source§impl Hash for AttributionModelKind
impl Hash for AttributionModelKind
Source§impl Ord for AttributionModelKind
impl Ord for AttributionModelKind
Source§fn cmp(&self, other: &AttributionModelKind) -> Ordering
fn cmp(&self, other: &AttributionModelKind) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AttributionModelKind
impl PartialEq for AttributionModelKind
Source§fn eq(&self, other: &AttributionModelKind) -> bool
fn eq(&self, other: &AttributionModelKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for AttributionModelKind
impl PartialOrd for AttributionModelKind
impl Eq for AttributionModelKind
impl StructuralPartialEq for AttributionModelKind
Auto Trait Implementations§
impl Freeze for AttributionModelKind
impl RefUnwindSafe for AttributionModelKind
impl Send for AttributionModelKind
impl Sync for AttributionModelKind
impl Unpin for AttributionModelKind
impl UnsafeUnpin for AttributionModelKind
impl UnwindSafe for AttributionModelKind
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