pub struct OpcodeBehavior {
pub input_types: &'static [DataType],
pub output_types: &'static [DataType],
pub output_order: Option<&'static [usize]>,
pub delta: &'static [StackItemDelta],
}Fields§
§input_types: &'static [DataType]§output_types: &'static [DataType]§output_order: Option<&'static [usize]>§delta: &'static [StackItemDelta]Trait Implementations§
Source§impl Clone for OpcodeBehavior
impl Clone for OpcodeBehavior
Source§fn clone(&self) -> OpcodeBehavior
fn clone(&self) -> OpcodeBehavior
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for OpcodeBehavior
impl Debug for OpcodeBehavior
Source§impl PartialEq for OpcodeBehavior
impl PartialEq for OpcodeBehavior
impl Copy for OpcodeBehavior
impl Eq for OpcodeBehavior
impl StructuralPartialEq for OpcodeBehavior
Auto Trait Implementations§
impl Freeze for OpcodeBehavior
impl RefUnwindSafe for OpcodeBehavior
impl Send for OpcodeBehavior
impl Sync for OpcodeBehavior
impl Unpin for OpcodeBehavior
impl UnwindSafe for OpcodeBehavior
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more