Voodlaz

Untitled

Oct 29th, 2020
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 26.99 KB | None | 0 0
  1. error[E0658]: function pointers cannot appear in constant functions
  2. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:378:31
  3. |
  4. 378 | divide_error: Entry::missing(),
  5. | ^^^^^^^^^^^^^^^^
  6. |
  7. = note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
  8. = help: add `#![feature(const_fn_fn_ptr_basics)]` to the crate attributes to enable
  9.  
  10. error[E0658]: mutable references are not allowed in constant functions
  11. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:378:31
  12. |
  13. 378 | divide_error: Entry::missing(),
  14. | ^^^^^^^^^^^^^^^^
  15. |
  16. = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
  17. = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
  18.  
  19. error[E0658]: function pointers cannot appear in constant functions
  20. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:379:24
  21. |
  22. 379 | debug: Entry::missing(),
  23. | ^^^^^^^^^^^^^^^^
  24. |
  25. = note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
  26. = help: add `#![feature(const_fn_fn_ptr_basics)]` to the crate attributes to enable
  27.  
  28. error[E0658]: mutable references are not allowed in constant functions
  29. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:379:24
  30. |
  31. 379 | debug: Entry::missing(),
  32. | ^^^^^^^^^^^^^^^^
  33. |
  34. = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
  35. = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
  36.  
  37. error[E0658]: function pointers cannot appear in constant functions
  38. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:380:41
  39. |
  40. 380 | non_maskable_interrupt: Entry::missing(),
  41. | ^^^^^^^^^^^^^^^^
  42. |
  43. = note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
  44. = help: add `#![feature(const_fn_fn_ptr_basics)]` to the crate attributes to enable
  45.  
  46. error[E0658]: mutable references are not allowed in constant functions
  47. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:380:41
  48. |
  49. 380 | non_maskable_interrupt: Entry::missing(),
  50. | ^^^^^^^^^^^^^^^^
  51. |
  52. = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
  53. = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
  54.  
  55. error[E0658]: function pointers cannot appear in constant functions
  56. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:381:29
  57. |
  58. 381 | breakpoint: Entry::missing(),
  59. | ^^^^^^^^^^^^^^^^
  60. |
  61. = note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
  62. = help: add `#![feature(const_fn_fn_ptr_basics)]` to the crate attributes to enable
  63.  
  64. error[E0658]: mutable references are not allowed in constant functions
  65. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:381:29
  66. |
  67. 381 | breakpoint: Entry::missing(),
  68. | ^^^^^^^^^^^^^^^^
  69. |
  70. = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
  71. = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
  72.  
  73. error[E0658]: function pointers cannot appear in constant functions
  74. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:382:27
  75. |
  76. 382 | overflow: Entry::missing(),
  77. | ^^^^^^^^^^^^^^^^
  78. |
  79. = note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
  80. = help: add `#![feature(const_fn_fn_ptr_basics)]` to the crate attributes to enable
  81.  
  82. error[E0658]: mutable references are not allowed in constant functions
  83. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:382:27
  84. |
  85. 382 | overflow: Entry::missing(),
  86. | ^^^^^^^^^^^^^^^^
  87. |
  88. = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
  89. = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
  90.  
  91. error[E0658]: function pointers cannot appear in constant functions
  92. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:383:39
  93. |
  94. 383 | bound_range_exceeded: Entry::missing(),
  95. | ^^^^^^^^^^^^^^^^
  96. |
  97. = note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
  98. = help: add `#![feature(const_fn_fn_ptr_basics)]` to the crate attributes to enable
  99.  
  100. error[E0658]: mutable references are not allowed in constant functions
  101. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:383:39
  102. |
  103. 383 | bound_range_exceeded: Entry::missing(),
  104. | ^^^^^^^^^^^^^^^^
  105. |
  106. = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
  107. = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
  108.  
  109. error[E0658]: function pointers cannot appear in constant functions
  110. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:384:33
  111. |
  112. 384 | invalid_opcode: Entry::missing(),
  113. | ^^^^^^^^^^^^^^^^
  114. |
  115. = note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
  116. = help: add `#![feature(const_fn_fn_ptr_basics)]` to the crate attributes to enable
  117.  
  118. error[E0658]: mutable references are not allowed in constant functions
  119. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:384:33
  120. |
  121. 384 | invalid_opcode: Entry::missing(),
  122. | ^^^^^^^^^^^^^^^^
  123. |
  124. = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
  125. = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
  126.  
  127. error[E0658]: function pointers cannot appear in constant functions
  128. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:385:39
  129. |
  130. 385 | device_not_available: Entry::missing(),
  131. | ^^^^^^^^^^^^^^^^
  132. |
  133. = note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
  134. = help: add `#![feature(const_fn_fn_ptr_basics)]` to the crate attributes to enable
  135.  
  136. error[E0658]: mutable references are not allowed in constant functions
  137. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:385:39
  138. |
  139. 385 | device_not_available: Entry::missing(),
  140. | ^^^^^^^^^^^^^^^^
  141. |
  142. = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
  143. = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
  144.  
  145. error[E0658]: function pointers cannot appear in constant functions
  146. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:386:31
  147. |
  148. 386 | double_fault: Entry::missing(),
  149. | ^^^^^^^^^^^^^^^^
  150. |
  151. = note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
  152. = help: add `#![feature(const_fn_fn_ptr_basics)]` to the crate attributes to enable
  153.  
  154. error[E0658]: mutable references are not allowed in constant functions
  155. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:386:31
  156. |
  157. 386 | double_fault: Entry::missing(),
  158. | ^^^^^^^^^^^^^^^^
  159. |
  160. = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
  161. = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
  162.  
  163. error[E0658]: function pointers cannot appear in constant functions
  164. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:387:46
  165. |
  166. 387 | coprocessor_segment_overrun: Entry::missing(),
  167. | ^^^^^^^^^^^^^^^^
  168. |
  169. = note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
  170. = help: add `#![feature(const_fn_fn_ptr_basics)]` to the crate attributes to enable
  171.  
  172. error[E0658]: mutable references are not allowed in constant functions
  173. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:387:46
  174. |
  175. 387 | coprocessor_segment_overrun: Entry::missing(),
  176. | ^^^^^^^^^^^^^^^^
  177. |
  178. = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
  179. = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
  180.  
  181. error[E0658]: function pointers cannot appear in constant functions
  182. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:388:30
  183. |
  184. 388 | invalid_tss: Entry::missing(),
  185. | ^^^^^^^^^^^^^^^^
  186. |
  187. = note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
  188. = help: add `#![feature(const_fn_fn_ptr_basics)]` to the crate attributes to enable
  189.  
  190. error[E0658]: mutable references are not allowed in constant functions
  191. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:388:30
  192. |
  193. 388 | invalid_tss: Entry::missing(),
  194. | ^^^^^^^^^^^^^^^^
  195. |
  196. = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
  197. = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
  198.  
  199. error[E0658]: function pointers cannot appear in constant functions
  200. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:389:38
  201. |
  202. 389 | segment_not_present: Entry::missing(),
  203. | ^^^^^^^^^^^^^^^^
  204. |
  205. = note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
  206. = help: add `#![feature(const_fn_fn_ptr_basics)]` to the crate attributes to enable
  207.  
  208. error[E0658]: mutable references are not allowed in constant functions
  209. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:389:38
  210. |
  211. 389 | segment_not_present: Entry::missing(),
  212. | ^^^^^^^^^^^^^^^^
  213. |
  214. = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
  215. = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
  216.  
  217. error[E0658]: function pointers cannot appear in constant functions
  218. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:390:38
  219. |
  220. 390 | stack_segment_fault: Entry::missing(),
  221. | ^^^^^^^^^^^^^^^^
  222. |
  223. = note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
  224. = help: add `#![feature(const_fn_fn_ptr_basics)]` to the crate attributes to enable
  225.  
  226. error[E0658]: mutable references are not allowed in constant functions
  227. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:390:38
  228. |
  229. 390 | stack_segment_fault: Entry::missing(),
  230. | ^^^^^^^^^^^^^^^^
  231. |
  232. = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
  233. = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
  234.  
  235. error[E0658]: function pointers cannot appear in constant functions
  236. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:391:43
  237. |
  238. 391 | general_protection_fault: Entry::missing(),
  239. | ^^^^^^^^^^^^^^^^
  240. |
  241. = note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
  242. = help: add `#![feature(const_fn_fn_ptr_basics)]` to the crate attributes to enable
  243.  
  244. error[E0658]: mutable references are not allowed in constant functions
  245. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:391:43
  246. |
  247. 391 | general_protection_fault: Entry::missing(),
  248. | ^^^^^^^^^^^^^^^^
  249. |
  250. = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
  251. = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
  252.  
  253. error[E0658]: function pointers cannot appear in constant functions
  254. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:392:29
  255. |
  256. 392 | page_fault: Entry::missing(),
  257. | ^^^^^^^^^^^^^^^^
  258. |
  259. = note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
  260. = help: add `#![feature(const_fn_fn_ptr_basics)]` to the crate attributes to enable
  261.  
  262. error[E0658]: mutable references are not allowed in constant functions
  263. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:392:29
  264. |
  265. 392 | page_fault: Entry::missing(),
  266. | ^^^^^^^^^^^^^^^^
  267. |
  268. = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
  269. = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
  270.  
  271. error[E0658]: function pointers cannot appear in constant functions
  272. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:393:29
  273. |
  274. 393 | reserved_1: Entry::missing(),
  275. | ^^^^^^^^^^^^^^^^
  276. |
  277. = note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
  278. = help: add `#![feature(const_fn_fn_ptr_basics)]` to the crate attributes to enable
  279.  
  280. error[E0658]: mutable references are not allowed in constant functions
  281. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:393:29
  282. |
  283. 393 | reserved_1: Entry::missing(),
  284. | ^^^^^^^^^^^^^^^^
  285. |
  286. = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
  287. = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
  288.  
  289. error[E0658]: function pointers cannot appear in constant functions
  290. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:394:37
  291. |
  292. 394 | x87_floating_point: Entry::missing(),
  293. | ^^^^^^^^^^^^^^^^
  294. |
  295. = note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
  296. = help: add `#![feature(const_fn_fn_ptr_basics)]` to the crate attributes to enable
  297.  
  298. error[E0658]: mutable references are not allowed in constant functions
  299. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:394:37
  300. |
  301. 394 | x87_floating_point: Entry::missing(),
  302. | ^^^^^^^^^^^^^^^^
  303. |
  304. = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
  305. = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
  306.  
  307. error[E0658]: function pointers cannot appear in constant functions
  308. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:395:34
  309. |
  310. 395 | alignment_check: Entry::missing(),
  311. | ^^^^^^^^^^^^^^^^
  312. |
  313. = note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
  314. = help: add `#![feature(const_fn_fn_ptr_basics)]` to the crate attributes to enable
  315.  
  316. error[E0658]: mutable references are not allowed in constant functions
  317. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:395:34
  318. |
  319. 395 | alignment_check: Entry::missing(),
  320. | ^^^^^^^^^^^^^^^^
  321. |
  322. = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
  323. = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
  324.  
  325. error[E0658]: function pointers cannot appear in constant functions
  326. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:396:32
  327. |
  328. 396 | machine_check: Entry::missing(),
  329. | ^^^^^^^^^^^^^^^^
  330. |
  331. = note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
  332. = help: add `#![feature(const_fn_fn_ptr_basics)]` to the crate attributes to enable
  333.  
  334. error[E0658]: mutable references are not allowed in constant functions
  335. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:396:32
  336. |
  337. 396 | machine_check: Entry::missing(),
  338. | ^^^^^^^^^^^^^^^^
  339. |
  340. = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
  341. = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
  342.  
  343. error[E0658]: function pointers cannot appear in constant functions
  344. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:397:38
  345. |
  346. 397 | simd_floating_point: Entry::missing(),
  347. | ^^^^^^^^^^^^^^^^
  348. |
  349. = note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
  350. = help: add `#![feature(const_fn_fn_ptr_basics)]` to the crate attributes to enable
  351.  
  352. error[E0658]: mutable references are not allowed in constant functions
  353. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:397:38
  354. |
  355. 397 | simd_floating_point: Entry::missing(),
  356. | ^^^^^^^^^^^^^^^^
  357. |
  358. = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
  359. = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
  360.  
  361. error[E0658]: function pointers cannot appear in constant functions
  362. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:398:33
  363. |
  364. 398 | virtualization: Entry::missing(),
  365. | ^^^^^^^^^^^^^^^^
  366. |
  367. = note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
  368. = help: add `#![feature(const_fn_fn_ptr_basics)]` to the crate attributes to enable
  369.  
  370. error[E0658]: mutable references are not allowed in constant functions
  371. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:398:33
  372. |
  373. 398 | virtualization: Entry::missing(),
  374. | ^^^^^^^^^^^^^^^^
  375. |
  376. = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
  377. = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
  378.  
  379. error[E0658]: function pointers cannot appear in constant functions
  380. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:399:29
  381. |
  382. 399 | reserved_2: [Entry::missing(); 9],
  383. | ^^^^^^^^^^^^^^^^^^^^^
  384. |
  385. = note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
  386. = help: add `#![feature(const_fn_fn_ptr_basics)]` to the crate attributes to enable
  387.  
  388. error[E0658]: mutable references are not allowed in constant functions
  389. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:399:29
  390. |
  391. 399 | reserved_2: [Entry::missing(); 9],
  392. | ^^^^^^^^^^^^^^^^^^^^^
  393. |
  394. = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
  395. = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
  396.  
  397. error[E0658]: function pointers cannot appear in constant functions
  398. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:399:30
  399. |
  400. 399 | reserved_2: [Entry::missing(); 9],
  401. | ^^^^^^^^^^^^^^^^
  402. |
  403. = note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
  404. = help: add `#![feature(const_fn_fn_ptr_basics)]` to the crate attributes to enable
  405.  
  406. error[E0658]: mutable references are not allowed in constant functions
  407. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:399:30
  408. |
  409. 399 | reserved_2: [Entry::missing(); 9],
  410. | ^^^^^^^^^^^^^^^^
  411. |
  412. = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
  413. = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
  414.  
  415. error[E0658]: function pointers cannot appear in constant functions
  416. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:400:37
  417. |
  418. 400 | security_exception: Entry::missing(),
  419. | ^^^^^^^^^^^^^^^^
  420. |
  421. = note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
  422. = help: add `#![feature(const_fn_fn_ptr_basics)]` to the crate attributes to enable
  423.  
  424. error[E0658]: mutable references are not allowed in constant functions
  425. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:400:37
  426. |
  427. 400 | security_exception: Entry::missing(),
  428. | ^^^^^^^^^^^^^^^^
  429. |
  430. = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
  431. = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
  432.  
  433. error[E0658]: function pointers cannot appear in constant functions
  434. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:401:29
  435. |
  436. 401 | reserved_3: Entry::missing(),
  437. | ^^^^^^^^^^^^^^^^
  438. |
  439. = note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
  440. = help: add `#![feature(const_fn_fn_ptr_basics)]` to the crate attributes to enable
  441.  
  442. error[E0658]: mutable references are not allowed in constant functions
  443. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:401:29
  444. |
  445. 401 | reserved_3: Entry::missing(),
  446. | ^^^^^^^^^^^^^^^^
  447. |
  448. = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
  449. = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
  450.  
  451. error[E0658]: function pointers cannot appear in constant functions
  452. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:402:29
  453. |
  454. 402 | interrupts: [Entry::missing(); 256 - 32],
  455. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  456. |
  457. = note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
  458. = help: add `#![feature(const_fn_fn_ptr_basics)]` to the crate attributes to enable
  459.  
  460. error[E0658]: mutable references are not allowed in constant functions
  461. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:402:29
  462. |
  463. 402 | interrupts: [Entry::missing(); 256 - 32],
  464. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  465. |
  466. = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
  467. = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
  468.  
  469. error[E0658]: function pointers cannot appear in constant functions
  470. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:402:30
  471. |
  472. 402 | interrupts: [Entry::missing(); 256 - 32],
  473. | ^^^^^^^^^^^^^^^^
  474. |
  475. = note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
  476. = help: add `#![feature(const_fn_fn_ptr_basics)]` to the crate attributes to enable
  477.  
  478. error[E0658]: mutable references are not allowed in constant functions
  479. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/idt.rs:402:30
  480. |
  481. 402 | interrupts: [Entry::missing(); 256 - 32],
  482. | ^^^^^^^^^^^^^^^^
  483. |
  484. = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
  485. = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
  486.  
  487. error[E0277]: the trait bound `PageTableEntry: core::marker::Copy` is not satisfied
  488. --> /home/inojelis/.cargo/registry/src/github.com-1ecc6299db9ec823/x86_64-0.11.0/src/structures/paging/page_table.rs:192:22
  489. |
  490. 192 | entries: [PageTableEntry::new(); ENTRY_COUNT],
  491. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `core::marker::Copy` is not implemented for `PageTableEntry`
  492. |
  493. = note: the `Copy` trait is required because the repeated element will be copied
  494.  
  495. error: aborting due to 55 previous errors
  496.  
Add Comment
Please, Sign In to add comment