mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
16 lines
366 B
Rust
16 lines
366 B
Rust
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
use std::convert::Infallible;
|
|
|
|
pub trait InfallibleResultExt<T> {
|
|
fn unwrap_infallible(self) -> T;
|
|
}
|
|
|
|
impl<T> InfallibleResultExt<T> for Result<T, Infallible> {
|
|
fn unwrap_infallible(self) -> T {
|
|
match self {
|
|
Ok(value) => value,
|
|
Err(never) => match never {},
|
|
}
|
|
}
|
|
}
|