Struct rustls_ffi::io::rustls_iovec
source · pub struct rustls_iovec { /* private fields */ }
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.
Auto Trait Implementations§
impl RefUnwindSafe for rustls_iovec
impl Send for rustls_iovec
impl Sync for rustls_iovec
impl Unpin for rustls_iovec
impl UnwindSafe for rustls_iovec
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more