rx_core_observable_create 0.1.1

create observable for rx_core
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod create_observable;

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

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

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