Struct rustls_ffi::io::rustls_iovec [−][src]
pub struct rustls_iovec { /* fields omitted */ }
Expand description
An alias for struct iovec
from uio.h (on Unix) or WSABUF
on Windows. You should cast
const struct rustls_iovec *
to const struct iovec *
on Unix, or const *LPWSABUF
on Windows. See std::io::IoSlice
for details on interoperability with platform
specific vectored IO.