[][src]Struct rac::Concat

pub struct Concat<U, V>(pub U, pub V)
where
    U: LineValid,
    V: LineValid
;

Methods

impl<U, V> Concat<U, V> where
    U: LineValid,
    V: LineValid
[src]

pub fn as_ref_u(&self) -> &U[src]

pub fn as_ref_v(&self) -> &V[src]

Trait Implementations

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]

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

Auto Trait Implementations

impl<U, V> Send for Concat<U, V> where
    U: Send,
    V: Send

impl<U, V> Sync for Concat<U, V> where
    U: Sync,
    V: Sync

impl<U, V> Unpin for Concat<U, V> where
    U: Unpin,
    V: Unpin

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.