pub trait ABIResponse: Debug {
type EncodeError: Debug;
const ORIGIN_TYPE_FOR_FREE: OriginType;
// Required method
fn try_into_buffer(self) -> Result<LeakBuffer, Self::EncodeError>;
}Required Associated Constants§
const ORIGIN_TYPE_FOR_FREE: OriginType
Required Associated Types§
type EncodeError: Debug
Required Methods§
fn try_into_buffer(self) -> Result<LeakBuffer, Self::EncodeError>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.