Function writev [src]
Returns the number of bytes read, which may be less than the buffer
space provided. A short read does not indicate end-of-stream.
Prototype
pub fn writev(this: @This(), iovecs: []const std.posix.iovec_const) WriteError!usize
Parameters
this: @This()
iovecs: []const std.posix.iovec_const
Source
pub fn writev(this: @This(), iovecs: []const std.posix.iovec_const) WriteError!usize {
_ = .{ this, iovecs };
@panic("unimplemented");
}