pub trait FromXdr: Sized { type Error; // Required method fn from_xdr(env: &Env, b: &Bytes) -> Result<Self, Self::Error>; }
Implemented by types that can be deserialized from Bytes.
All types that are convertible from Val are implemented.