Abstract SSZ vec decoding

This commit is contained in:
Michael Sproul
2022-03-18 11:00:10 +11:00
parent efc8d34843
commit aa67c6f4bf
6 changed files with 108 additions and 17 deletions

View File

@@ -5,6 +5,7 @@ use std::cmp::Ordering;
type SmallVec8<T> = SmallVec<[T; 8]>;
pub mod impls;
pub mod try_from_iter;
/// Returned when SSZ decoding fails.
#[derive(Debug, PartialEq, Clone)]