You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error[E0437]: type `Ok` is not a member of trait `ops::Try`
--> <path redacted>\uefi-0.9.0\src\result\status.rs:175:5
175 | type Ok = Completion<()>;
| ^^^^^^^^^^^^^^^^^^^^^^^^^ not a member of trait `ops::Try`
error[E0437]: type `Error` is not a member of trait `ops::Try`
--> <path redacted>\uefi-0.9.0\src\result\status.rs:176:5
|
176 | type Error = Error<()>;
| ^^^^^^^^^^^^^^^^^^^^^^^ not a member of trait `ops::Try`
error[E0407]: method `into_result` is not a member of trait `ops::Try`
--> <path redacted>\uefi-0.9.0\src\result\status.rs:178:5
|
178 | / fn into_result(self) -> Result<(), ()> {
179 | | self.into()
180 | | }
| |_____^ not a member of trait `ops::Try`
error[E0407]: method `from_error` is not a member of trait `ops::Try`
--> <path redacted>\uefi-0.9.0\src\result\status.rs:182:5
|
182 | / fn from_error(error: Self::Error) -> Self {
183 | | error.status()
184 | | }
| |_____^ not a member of trait `ops::Try`
error[E0407]: method `from_ok` is not a member of trait `ops::Try`
--> <path redacted>\uefi-0.9.0\src\result\status.rs:186:5
|
186 | / fn from_ok(ok: Self::Ok) -> Self {
187 | | ok.status()
188 | | }
| |_____^ not a member of trait `ops::Try`
error[E0658]: use of unstable library feature 'try_trait_v2'
--> <path redacted>\uefi-0.9.0\src\result\status.rs:174:6
|
174 | impl ops::Try for Status {
| ^^^^^^^^
|
= note: see issue #84277 <https://github.com/rust-lang/rust/issues/84277> for more information
= help: add `#![feature(try_trait_v2)]` to the crate attributes to enable
error[E0220]: associated type `Error` not found for `Self`
--> <path redacted>\uefi-0.9.0\src\result\status.rs:182:32
|
182 | fn from_error(error: Self::Error) -> Self {
| ^^^^^ associated type `Error` not found
error[E0220]: associated type `Ok` not found for `Self`
--> <path redacted>\uefi-0.9.0\src\result\status.rs:186:26
|
186 | fn from_ok(ok: Self::Ok) -> Self {
| ^^ associated type `Ok` not found
error: aborting due to 8 previous errors
The text was updated successfully, but these errors were encountered:
UEFI crate version:
0.9.0
Rust compiler metadata:
rustc --version --verbose
Errors:
The text was updated successfully, but these errors were encountered: