pub trait Channel {
type Element;
// Required method
fn channel(&self) -> &[Self::Element];
}
Expand description
Types that may be used as a data channel within a mesh.
pub trait Channel {
type Element;
// Required method
fn channel(&self) -> &[Self::Element];
}
Types that may be used as a data channel within a mesh.