pub trait FunctionalVec {
    // Required methods
    fn concat(&self, other: &[u8]) -> Vec<u8> ;
    fn concat_byte(&self, other: u8) -> Vec<u8> ;
}

Required Methods§

source

fn concat(&self, other: &[u8]) -> Vec<u8>

source

fn concat_byte(&self, other: u8) -> Vec<u8>

Implementations on Foreign Types§

source§

impl FunctionalVec for &[u8]

source§

fn concat(&self, other: &[u8]) -> Vec<u8>

source§

fn concat_byte(&self, other: u8) -> Vec<u8>

source§

impl FunctionalVec for Vec<u8>

source§

fn concat(&self, other: &[u8]) -> Vec<u8>

source§

fn concat_byte(&self, other: u8) -> Vec<u8>

Implementors§