#iovec #api-bindings #vectored-io

no-std ioslice

no_std I/O slices that are still optionally ABI compatible with std and lbc

11 unstable releases

0.6.0 Mar 18, 2024
0.6.0-alpha.2 Apr 27, 2021
0.5.1 Oct 11, 2020
0.4.0 Sep 15, 2020
0.1.0 Sep 8, 2020

#37 in Windows APIs

Download history 3/week @ 2024-01-08 16/week @ 2024-02-26 152/week @ 2024-03-18 14/week @ 2024-03-25 55/week @ 2024-04-01 109/week @ 2024-04-08 101/week @ 2024-04-15

288 downloads per month
Used in 14 crates (3 directly)

MIT license

84KB
1.5K SLoC

ioslice-rs

Build Status Crates.io Documentation

Provides I/O byte slice types that implement most traits that regular slices implement, and are ABI compatible with struct iovec or WSABUF. Additionally, various utility functions and traits for dealing with uninitialized memory in safe code is also included.


lib.rs:

#![no_std]-friendly wrappers over the std::io::IoSlice and std::io::IoSliceMut, which are shared slices and exclusive slices, respectively, and ABI-compatible with system types for I/O vectors.

Internally, the struct will store the following based on crate features:

  • std - wrapping std::io::IoSlice directly, with accessors for it as well as conversion functions and From impls.
  • libc (and #[cfg(unix)]) - wrapping libc::iovec directly on platforms that support it. A marker is also stored, to safely wrap the raw pointer, and forcing usage of this API to follow the borrow checker rules.
  • (none) - wrapping a regular slice, that may not have the same ABI guarantees as the types from std or libc have.

IoSlice will however implement AsRef<[u8]>, Borrow<[u8]>, and Deref<Target = [u8]> regardless of the features used, so long as the slice is marked as initialized.

Dependencies

~190KB