A trait for writing integers without encoding (i.e. `FixedInt`) to any `Write` type.
| 46 | |
| 47 | /// A trait for writing integers without encoding (i.e. `FixedInt`) to any `Write` type. |
| 48 | pub trait FixedIntWriter { |
| 49 | fn write_fixedint<FI: FixedInt>(&mut self, n: FI) -> Result<usize>; |
| 50 | } |
| 51 | |
| 52 | #[cfg(any(feature = "tokio_async", feature = "futures_async"))] |
| 53 | #[async_trait::async_trait(?Send)] |
nothing calls this directly
no outgoing calls
no test coverage detected