mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
6 lines
127 B
Rust
6 lines
127 B
Rust
pub trait Expect<P, R> {
|
|
#[must_use]
|
|
fn expect<F>(self, expectation: F) -> Self
|
|
where
|
|
F: FnOnce(P) -> R;
|
|
}
|