pub trait HashedPostStateProvider {
// Required method
fn hashed_post_state(&self, bundle_state: &BundleState) -> HashedPostState;
}Expand description
Trait that provides the hashed state from various sources.
Required Methods§
Sourcefn hashed_post_state(&self, bundle_state: &BundleState) -> HashedPostState
fn hashed_post_state(&self, bundle_state: &BundleState) -> HashedPostState
Returns the HashedPostState of the provided [BundleState].
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".