driver_async/
lib.rs

1pub mod asyncs;
2pub mod time;
3extern crate alloc;
4
5/// Basic `ConversionError` for when primitives can't be converted to/from bytes because of invalid
6/// states. Most modules use their own errors for when there is more information to report.
7#[derive(Copy, Clone, Ord, PartialOrd, Eq, PartialEq, Hash, Debug)]
8struct ConversionError(pub ());