[][src]Trait differential_dataflow::trace::layers::ordered::OrdOffset

pub trait OrdOffset: Copy + PartialEq + Add<Output = Self> + Sub<Output = Self> + TryFrom<usize> + TryInto<usize> { }

Trait for types used as offsets into an ordered layer. This is usually usize, but u32 can also be used in applications where huge batches do not occur to reduce metadata size.

Implementors

impl<O> OrdOffset for O where
    O: Copy + PartialEq + Add<Output = Self> + Sub<Output = Self> + TryFrom<usize> + TryInto<usize>, 
[src]

Loading content...