use ;
use ;
/// If we want to deserialize an entire sequence simultaneously,
/// e.g. reading (u32, u32) from the bitstream atomically,
/// then we need to call visitor.visit_seq(<something>).
/// IterVisitor serves the role of <something>, providing an adapter
/// that will visit each element in an iterator.
///
///
/// # Examples
/// visitor.visit_seq(IterVisitor([1u32, 2u32].into_iter()))
///
;