rx_core_observable_just 0.1.2

just observable for rx_core; emits a single value
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod just_observable;

pub mod observable {
	pub use super::just_observable::*;
}

#[cfg(feature = "observable_fn")]
mod just_observable_fn;

#[cfg(feature = "observable_fn")]
pub mod observable_fn {
	pub use super::just_observable_fn::*;
}