dataport 0.1.0

Port abstractions for data types
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright © 2026 Stephan Kunz
//! Most commonly used interfaces of [`dataport`](crate).
//!
//! Typically it is sufficient to include the prelude with
//!
//! ```use dataport::prelude::*;```

pub use crate::{
	EmptyPortArray, PortArray, PortCollection, PortCollectionAccessors, PortCollectionAccessorsCommon, PortCollectionMut,
	PortCommons, create_inbound_entry, create_inbound_entry_parseable, create_inoutbound_entry,
	create_inoutbound_entry_parseable, create_outbound_entry, create_outbound_entry_parseable, create_port_array,
	create_port_vec,
};