1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![warn(missing_docs)]
//! # FutureSDR Types
//!
//! FutureSDR types that are used by the runtime and also exposed for
//! interaction with the outside world through the flowgraph's REST API.
mod description;
pub use description::BlockDescription;
pub use description::FlowgraphDescription;

mod pmt;
pub use pmt::Pmt;
pub use pmt::PmtKind;

mod port_id;
pub use port_id::PortId;