photonic 0.1.1

Dynamic light controller and animator
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub use self::attr::{BoxedAttr, BoxedBoundAttrDecl, BoxedFreeAttrDecl, DynAttr, DynBoundAttrDecl, DynFreeAttrDecl};
pub use self::node::{BoxedNode, BoxedNodeDecl, DynNode, DynNodeDecl};
pub use self::output::{BoxedOutput, BoxedOutputDecl, DynOutput, DynOutputDecl};

mod attr;
mod node;
mod output;

pub trait Boxed<T: ?Sized> {
    fn boxed(self) -> Box<T>;
}