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 port_id;
16pub use port_id::PortId;