Function binbin::write_vec_be[][src]

pub fn write_vec_be<F, R>(into: &mut Vec<u8>, f: F) -> Result<R> where
    for<'w> F: FnOnce(&mut Writer<'w, &mut Cursor<&mut Vec<u8>>, BigEndian>) -> Result<R>, 
Expand description

Writes arbitrary binary data into a byte vector using the given function f, writing big-endian by default.