Trait nannou_mesh::channel::Channel[][src]

pub trait Channel {
    type Element;
    fn channel(&self) -> &[Self::Element]
Notable traits for &'_ mut [u8]
impl<'_> Write for &'_ mut [u8]impl<'_> Read for &'_ [u8]
; }
Expand description

Types that may be used as a data channel within a mesh.

Associated Types

The type contained within the channel.

Required methods

Borrow the data channel.

Implementations on Foreign Types

Implementors