futuresdr_types/lib.rs
1#![warn(missing_docs)]
2//! # FutureSDR Types
3//!
4//! FutureSDR types that are used by the runtime and also exposed for
5//! interaction with the outside world through the flowgraph's REST API.
6mod description;
7pub use description::BlockDescription;
8pub use description::FlowgraphDescription;
9
10mod pmt;
11pub use pmt::Pmt;
12pub use pmt::PmtConversionError;
13pub use pmt::PmtKind;
14
15mod block_id;
16pub use block_id::BlockId;
17mod flowgraph_id;
18pub use flowgraph_id::FlowgraphId;
19mod port_id;
20pub use port_id::PortId;
21#[cfg(feature = "seify")]
22mod seify;