Guest User

Untitled

a guest
May 23rd, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.48 KB | None | 0 0
  1. Compiling swagger_client v0.13.0 (file:///mnt/sdb1/newby/projects/rust-epoch)
  2. error[E0412]: cannot find type `Integer` in this scope
  3. --> src/models.rs:1406:20
  4. |
  5. 1406 | pub struct Pow(Vec<Integer>);
  6. | ^^^^^^^ not found in this scope
  7.  
  8. error[E0412]: cannot find type `Integer` in this scope
  9. --> src/models.rs:1405:46
  10. |
  11. 1405 | #[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
  12. | ^^^^^^^^^^^ not found in this scope
  13.  
  14. error[E0412]: cannot find type `Integer` in this scope
  15. --> src/models.rs:1408:31
  16. |
  17. 1408 | impl ::std::convert::From<Vec<Integer>> for Pow {
  18. | ^^^^^^^ not found in this scope
  19.  
  20. error[E0412]: cannot find type `Integer` in this scope
  21. --> src/models.rs:1409:20
  22. |
  23. 1409 | fn from(x: Vec<Integer>) -> Self {
  24. | ^^^^^^^ not found in this scope
  25.  
  26. error[E0412]: cannot find type `Integer` in this scope
  27. --> src/models.rs:1414:40
  28. |
  29. 1414 | impl ::std::convert::From<Pow> for Vec<Integer> {
  30. | ^^^^^^^ not found in this scope
  31.  
  32. error[E0412]: cannot find type `Integer` in this scope
  33. --> src/models.rs:1420:32
  34. |
  35. 1420 | impl ::std::iter::FromIterator<Integer> for Pow {
  36. | ^^^^^^^ not found in this scope
  37.  
  38. error[E0412]: cannot find type `Integer` in this scope
  39. --> src/models.rs:1421:39
  40. |
  41. 1421 | fn from_iter<U: IntoIterator<Item=Integer>>(u: U) -> Self {
  42. | ^^^^^^^ not found in this scope
  43.  
  44. error[E0412]: cannot find type `Integer` in this scope
  45. --> src/models.rs:1422:19
  46. |
  47. 1422 | Pow(Vec::<Integer>::from_iter(u))
  48. | ^^^^^^^ not found in this scope
  49.  
  50. error[E0412]: cannot find type `Integer` in this scope
  51. --> src/models.rs:1427:17
  52. |
  53. 1427 | type Item = Integer;
  54. | ^^^^^^^ not found in this scope
  55.  
  56. error[E0412]: cannot find type `Integer` in this scope
  57. --> src/models.rs:1428:42
  58. |
  59. 1428 | type IntoIter = ::std::vec::IntoIter<Integer>;
  60. | ^^^^^^^ not found in this scope
  61.  
  62. error[E0412]: cannot find type `Integer` in this scope
  63. --> src/models.rs:1436:21
  64. |
  65. 1436 | type Item = &'a Integer;
  66. | ^^^^^^^ not found in this scope
  67.  
  68. error[E0412]: cannot find type `Integer` in this scope
  69. --> src/models.rs:1437:44
  70. |
  71. 1437 | type IntoIter = ::std::slice::Iter<'a, Integer>;
  72. | ^^^^^^^ not found in this scope
  73.  
  74. error[E0412]: cannot find type `Integer` in this scope
  75. --> src/models.rs:1445:25
  76. |
  77. 1445 | type Item = &'a mut Integer;
  78. | ^^^^^^^ not found in this scope
  79.  
  80. error[E0412]: cannot find type `Integer` in this scope
  81. --> src/models.rs:1446:47
  82. |
  83. 1446 | type IntoIter = ::std::slice::IterMut<'a, Integer>;
  84. | ^^^^^^^ not found in this scope
  85.  
  86. error[E0412]: cannot find type `Integer` in this scope
  87. --> src/models.rs:1454:23
  88. |
  89. 1454 | type Target = Vec<Integer>;
  90. | ^^^^^^^ not found in this scope
  91.  
  92. error: unnecessary parentheses around function argument
  93. --> src/server.rs:1750:63
  94. |
  95. 1750 | let mut response = Response::with((status::Status::from_u16(200)));
  96. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses
  97. |
  98. = note: `-D unused-parens` implied by `-D warnings`
  99.  
  100. error: unnecessary parentheses around function argument
  101. --> src/server.rs:3674:63
  102. |
  103. 3674 | let mut response = Response::with((status::Status::from_u16(200)));
  104. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses
  105.  
  106. error: unnecessary parentheses around function argument
  107. --> src/server.rs:5573:63
  108. |
  109. 5573 | let mut response = Response::with((status::Status::from_u16(200)));
  110. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses
  111.  
  112. error: aborting due to 18 previous errors
  113.  
  114. For more information about this error, try `rustc --explain E0412`.
  115. error: Could not compile `swagger_client`.
  116.  
  117. To learn more, run the command again with --verbose.
  118. newby@bigly:~/projects/rust-epoch$
Add Comment
Please, Sign In to add comment