voidio 0.1.5

VOID I/O - High-performance Cross-platform I/O for Rust.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use std::{fmt};

pub trait SendableComponent: fmt::Display {
    fn clone_box(&self) -> Box<dyn SendableComponent>;
}
impl Clone for Box<dyn SendableComponent> {
    fn clone(&self) -> Self {
        self.clone_box()
    }
}

#[allow(dead_code)]
pub struct Component { }
impl Component { }