rs-matter/matter/src/utils/select.rs
2023-07-21 12:15:11 +00:00

38 lines
882 B
Rust

use embassy_futures::select::{Either, Either3, Either4};
use embassy_sync::blocking_mutex::raw::NoopRawMutex;
pub type Notification = embassy_sync::signal::Signal<NoopRawMutex, ()>;
pub trait EitherUnwrap<T> {
fn unwrap(self) -> T;
}
impl<T> EitherUnwrap<T> for Either<T, T> {
fn unwrap(self) -> T {
match self {
Self::First(t) => t,
Self::Second(t) => t,
}
}
}
impl<T> EitherUnwrap<T> for Either3<T, T, T> {
fn unwrap(self) -> T {
match self {
Self::First(t) => t,
Self::Second(t) => t,
Self::Third(t) => t,
}
}
}
impl<T> EitherUnwrap<T> for Either4<T, T, T, T> {
fn unwrap(self) -> T {
match self {
Self::First(t) => t,
Self::Second(t) => t,
Self::Third(t) => t,
Self::Fourth(t) => t,
}
}
}