Trait essential_constraint_vm::asm::TryFromBytes
source · pub trait TryFromBytes: Sized {
type Error: Debug + Display;
// Required method
fn try_from_bytes(
bytes: &mut impl Iterator<Item = u8>,
) -> Option<Result<Self, Self::Error>>;
}
Expand description
Operation types that may be parsed from a bytecode representation.
Required Associated Types§
Required Methods§
Object Safety§
This trait is not object safe.