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