pub fn deserialize_vec_without_len<T: CanonicalDeserialize>(
    reader: impl Read,
    compress: Compress,
    validate: Validate,
    len: usize
) -> Result<Vec<T>, SerializationError>
Expand description

Deserialize a Vector’s elements without deserializing the Vector’s length If you want to deserialize the full Vector, use CanonicalDeserialize for Vec<T>