futuresdr-types 0.0.14

Polymorphic Types for an Experimental Async SDR Runtime for Heterogeneous Architectures.
Documentation
#![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::PmtConversionError;
pub use pmt::PmtKind;

mod block_id;
pub use block_id::BlockId;
mod flowgraph_id;
pub use flowgraph_id::FlowgraphId;
mod port_id;
pub use port_id::PortId;
#[cfg(feature = "seify")]
mod seify;