que 0.4.5

A high performance channel with optional backpressure, interprocess capability, and a multiconsumer mode.
Documentation
1
2
3
4
5
6
7
8
9
10
11
fn main() {
    type LowAlign = u64;
    que::Channel::<LowAlign, 8>::print_layout();

    println!();

    #[repr(align(256))]
    #[allow(unused)]
    struct HighAlign(u64);
    que::Channel::<HighAlign, 8>::print_layout();
}