pub fn read_u64_into(src: &[u8], dst: &mut [u64])
Available on crate feature
dep_rand_core
only.Expand description
Reads unsigned 64 bit integers from src
into dst
.
§Panics
If dst
has insufficient space (8*dst.len() < src.len()
).