Trait FunctionalVec

Source
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§