pub trait Verifiable {
// Required method
fn verify(&self) -> Result<()>;
}Expand description
Verifiable can be verified. ref. https://pkg.go.dev/github.com/ava-labs/avalanchego/vms/components#Verifiable
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".