pub trait ToBcsBytes { // Required method fn to_bcs_bytes(&self) -> Result<Vec<u8>, Error>; }
Extension trait to serialize a type into a vector of bytes using bcs.
bcs
Serializes itself into a vector of bytes using bcs.