pub trait HistoryResult: Sized + DynEncodable {
// Provided method
fn into_extension_object(self) -> ExtensionObject { ... }
}Expand description
Trait for values storable as history data.
Provided Methods§
Sourcefn into_extension_object(self) -> ExtensionObject
fn into_extension_object(self) -> ExtensionObject
Return an extension object containing the encoded data for the current object.
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.