mundy 0.1.1

Reads various system-level accessibility and UI preferences
Documentation
1
2
3
4
5
6
7
8
use crate::{AvailablePreferences, Interest};
use futures_util::{future, stream};

pub(crate) type PreferencesStream = stream::Once<future::Ready<AvailablePreferences>>;

pub(crate) fn stream(_interest: Interest) -> PreferencesStream {
    stream::once(future::ready(AvailablePreferences::default()))
}