instruction.rs 276 B

12345678910111213
  1. use steel::*;
  2. #[repr(u8)]
  3. #[derive(Clone, Copy, Debug, Eq, PartialEq, TryFromPrimitive)]
  4. pub enum SteelInstruction {
  5. CheckAccounts = 0,
  6. }
  7. #[repr(C)]
  8. #[derive(Clone, Copy, Debug, Pod, Zeroable)]
  9. pub struct CheckAccounts {}
  10. instruction!(SteelInstruction, CheckAccounts);