pub enum TransferAttribution {
Key,
Window,
}Expand description
How a transfer, which carries no session id, was tied to the session.
Variants§
Key
Same cache key as one of the session’s units.
Window
No key match; its time overlaps this session and no other.
Trait Implementations§
Source§impl Clone for TransferAttribution
impl Clone for TransferAttribution
Source§fn clone(&self) -> TransferAttribution
fn clone(&self) -> TransferAttribution
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 moreimpl Copy for TransferAttribution
Source§impl Debug for TransferAttribution
impl Debug for TransferAttribution
Source§impl Default for TransferAttribution
impl Default for TransferAttribution
Source§fn default() -> TransferAttribution
fn default() -> TransferAttribution
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TransferAttribution
impl<'de> Deserialize<'de> for TransferAttribution
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
impl Eq for TransferAttribution
Source§impl PartialEq for TransferAttribution
impl PartialEq for TransferAttribution
Source§impl Serialize for TransferAttribution
impl Serialize for TransferAttribution
impl StructuralPartialEq for TransferAttribution
Auto Trait Implementations§
impl Freeze for TransferAttribution
impl RefUnwindSafe for TransferAttribution
impl Send for TransferAttribution
impl Sync for TransferAttribution
impl Unpin for TransferAttribution
impl UnsafeUnpin for TransferAttribution
impl UnwindSafe for TransferAttribution
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