macro_rules! to_bytes {
($($x:expr),*) => { ... };
}Expand description
Takes as input a sequence of structs, and converts them to a series of
bytes. All traits that implement Bytes can be automatically converted to
bytes in this manner.
macro_rules! to_bytes {
($($x:expr),*) => { ... };
}Takes as input a sequence of structs, and converts them to a series of
bytes. All traits that implement Bytes can be automatically converted to
bytes in this manner.