Trait rac::Line[][src]

pub trait Line where
    Self: LineValid
{ fn clone_array(a: &Array<Self::Length>) -> Self; }

Required methods

fn clone_array(a: &Array<Self::Length>) -> Self[src]

Loading content...

Implementations on Foreign Types

impl Line for [u8; 0][src]

fn clone_array(_a: &Array<Self::Length>) -> Self[src]

Loading content...

Implementors

impl<L> Line for Array<L> where
    L: ArrayLength<u8>, 
[src]

fn clone_array(a: &Array<Self::Length>) -> Self[src]

impl<U, V> Line for Concat<U, V> where
    U: Line,
    V: Line,
    U::Length: Add<V::Length>,
    <U::Length as Add<V::Length>>::Output: ArrayLength<u8>, 
[src]

fn clone_array(a: &Array<Self::Length>) -> Self[src]

Loading content...