A type which can be encoded to bytes with [`encode`]. Use `#[derive(Encode)]` to implement.
| 29 | /// |
| 30 | /// Use `#[derive(Encode)]` to implement. |
| 31 | pub trait Encode { |
| 32 | #[doc(hidden)] |
| 33 | type Encoder: Encoder<Self>; |
| 34 | } |
| 35 | |
| 36 | /// A type which can be decoded from bytes with [`decode`]. |
| 37 | /// |
nothing calls this directly
no outgoing calls
no test coverage detected