Function readv [src]
Returns the number of bytes read. The number read may be less than the
buffer space provided. End-of-stream is indicated by a return value of 0.
The iovecs parameter is mutable because so that function may to
mutate the fields in order to handle partial reads from the underlying
stream layer.
Prototype
pub fn readv(this: @This(), iovecs: []std.posix.iovec) ReadError!usize
Parameters
this: @This()
iovecs: []std.posix.iovec
Source
pub fn readv(this: @This(), iovecs: []std.posix.iovec) ReadError!usize {
_ = .{ this, iovecs };
@panic("unimplemented");
}