pub struct FunnelFold {
pub per_token: BTreeMap<Token, BTreeMap<Stage, u64>>,
}Expand description
Counts stages per token. Commutative across tokens by construction —
counts don’t care about cross-token order (doc 04 §2).
Fields§
§per_token: BTreeMap<Token, BTreeMap<Stage, u64>>Token → stage → count.
Trait Implementations§
Source§impl Debug for FunnelFold
impl Debug for FunnelFold
Source§impl Default for FunnelFold
impl Default for FunnelFold
Source§fn default() -> FunnelFold
fn default() -> FunnelFold
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FunnelFold
impl RefUnwindSafe for FunnelFold
impl Send for FunnelFold
impl Sync for FunnelFold
impl Unpin for FunnelFold
impl UnsafeUnpin for FunnelFold
impl UnwindSafe for FunnelFold
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