GabrielDertoni
GabrielDertoni
Currently there is a feature for the optional dependency `rand` in the simba crate. However, only the scalar types implement the traits from `rand`. I don't see a reason why...
Currently the `no_std` support for the crate still depends on `alloc`. However, this is only required for `Bytes` and `BytesMut` data structures and not `Buf` and `BufMut` traits or its...
## Introduction Currently the `Message` trait is defined like this ```rust pub trait Message where Self: Sized, { fn message_id(&self) -> u32; fn message_name(&self) -> &'static str; /// Serialize **Message**...