omnimesh 1.0.1

Zero-allocation mesh networking middleware for autonomous robot fleets, edge-AI swarms, and multi-agent systems
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Unit tests for Transport trait interface
//!
//! The Transport trait is tested primarily through its implementations
//! (MockTransport, TcpTransport, QuicTransport). See their respective
//! test modules for comprehensive interface verification.

#![allow(unused_imports)]

use crate::runtime::transport::interface::Transport;

#[test]
fn transport_trait_is_object_safe() {
    // This test verifies that Transport can be used as a trait object
    let _: &dyn Transport;
}