Skip to main content

asimov_protocol/
message_header.rs

1// This is free and unencumbered software released into the public domain.
2
3pub type MessageLen = u32;
4
5pub const MESSAGE_HEADER_LEN: usize = size_of::<MessageLen>();