Enum AttributionModelKind
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§
§impl Clone for AttributionModelKind
impl Clone for AttributionModelKind
§fn clone(&self) -> AttributionModelKind
fn clone(&self) -> AttributionModelKind
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl Debug for AttributionModelKind
impl Debug for AttributionModelKind
§impl Hash for AttributionModelKind
impl Hash for AttributionModelKind
§impl Ord for AttributionModelKind
impl Ord for AttributionModelKind
§fn cmp(&self, other: &AttributionModelKind) -> Ordering
fn cmp(&self, other: &AttributionModelKind) -> Ordering
1.21.0 · 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
§impl PartialEq for AttributionModelKind
impl PartialEq for AttributionModelKind
§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