bloop-protocol 1.1.0

Core implementation of the Bloop wire protocol
1
2
3
4
5
6
7
8
9
use bloop_protocol::MessageSet;

#[derive(MessageSet)]
enum Set<First, Second> {
    First(First),
    Second(Second),
}

fn main() {}