Struct rac::Concat[][src]

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

Implementations

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<'de, U, V> Deserialize<'de> for Concat<U, V> where
    U: LineValid,
    V: LineValid,
    U: Deserialize<'de>,
    V: Deserialize<'de>, 
[src]

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
    __D: Deserializer<'de>, 
[src]

Deserialize this value from the given Serde deserializer. Read more

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]

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

fn try_clone_array(a: &Array<Self::Length>) -> Result<Self, ()>[src]

fn clone_line(&self) -> Array<Self::Length>[src]

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

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
    __S: Serializer
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

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

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

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

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]