Advertisement
paupav

Untitled

May 23rd, 2018
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. //file0
  2. error[E0599]: no function or associated item named `movement_input` found for type `input_console::InputConsole` in the current scope
  3. --> src/main.rs:25:12
  4. |
  5. 25 | match input_console::InputConsole::movement_input() {
  6. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ function or associated item not found in `input_console::InputConsole`
  7. |
  8. ::: src/input_console.rs
  9.  
  10. //file1
  11. pub trait Input {
  12. fn movement_input() -> ValidMovement;
  13. }
  14.  
  15. //file2
  16. impl Input for InputConsole {
  17. fn movement_input() -> ValidMovement,
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement