[][src]Trait rac::LineValid

pub trait LineValid where
    Self: Sized
{ type Length: ArrayLength<u8>; fn try_clone_array(a: &GenericArray<u8, Self::Length>) -> Result<Self, ()>;
fn clone_line(&self) -> GenericArray<u8, Self::Length>; }

Associated Types

Loading content...

Required methods

fn try_clone_array(a: &GenericArray<u8, Self::Length>) -> Result<Self, ()>

fn clone_line(&self) -> GenericArray<u8, Self::Length>

Loading content...

Implementations on Foreign Types

impl<L> LineValid for GenericArray<u8, L> where
    L: ArrayLength<u8>, 
[src]

type Length = L

Loading content...

Implementors

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

type Length = <U::Length as AddLength<u8, V::Length>>::Output

Loading content...