pub trait IntoUncleBlockView {
// Required method
fn into_view(self) -> UncleBlockView;
}Expand description
Trait for converting types into UncleBlockView.
Required Methods§
Sourcefn into_view(self) -> UncleBlockView
fn into_view(self) -> UncleBlockView
Converts the implementing type into an UncleBlockView.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".