Lines Matching refs:Command
20 pub enum Command { enum
31 impl From<u32> for Command { implementation
33 fn from(value: u32) -> Command { in from() argument
35 0 => Command::Compare, in from()
36 1 => Command::Convert, in from()
37 2 => Command::Add, in from()
38 3 => Command::Sub, in from()
39 4 => Command::Multiply, in from()
40 5 => Command::Divide, in from()
41 6 => Command::Module, in from()
42 _ => Command::Unknown, in from()