pub type IoSlice = io_vec;
Type of an IO vec buffer and length.
struct IoSlice { pub buf: *mut i8, pub len: usize, }
buf: *mut i8
Pointer to buffer.
len: usize
Length of buffer in bytes.