usestd::mem::size_of;/// Trait for types that can be encoded with a known, fixed size.
pubtraitFixedSize{/// The size of the encoded data if Self has a fixed encoding size
fnencoded_size()->usize;}implFixedSize foru64{fnencoded_size()->usize{size_of::<Self>()}}implFixedSize foru32{fnencoded_size()->usize{size_of::<Self>()}}