Trait ckb_types::prelude::PackVec[][src]

pub trait PackVec<T: Entity, I: Entity>: IntoIterator<Item = I> {
    fn pack(self) -> T;
}
Expand description

A syntactic sugar to convert a vector of binary data into one binary data.

Required methods

Packs a vector of binary data into one binary data.

Implementors