scsys-crypto 0.3.2

cryptographic primitives and utilities for the scsys ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
/*
    Appellation: concat <module>
    Contrib: @FL03
*/

/// this trait defines a common method for concatenating two entities into some new type.
pub trait Concat<Rhs = Self> {
    type Output;
    /// Concatenate two slices into a new vector.
    fn concat(&self, other: Rhs) -> Self::Output;
}