6 releases

Uses old Rust 2015

0.2.1 Mar 25, 2021
0.2.0 Aug 29, 2019
0.1.5 Mar 2, 2021
0.1.4 Sep 23, 2020
0.1.0 Nov 1, 2018

#75 in No standard library

Download history 23587/week @ 2023-12-08 20881/week @ 2023-12-15 15130/week @ 2023-12-22 15636/week @ 2023-12-29 21808/week @ 2024-01-05 22394/week @ 2024-01-12 20405/week @ 2024-01-19 20910/week @ 2024-01-26 18798/week @ 2024-02-02 19224/week @ 2024-02-09 19660/week @ 2024-02-16 19183/week @ 2024-02-23 20297/week @ 2024-03-01 21267/week @ 2024-03-08 20009/week @ 2024-03-15 17082/week @ 2024-03-22

81,711 downloads per month
Used in 817 crates (12 directly)

MIT/Apache

7KB
59 lines

as-slice

AsSlice and AsMutSlice traits

Change log

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.


lib.rs:

AsSlice and AsMutSlice traits

These traits are somewhat similar to the AsRef and AsMut except that they are NOT polymorphic (no input type parameter) and their methods always return slices ([T]).

The main use case of these traits is writing generic code that accepts (fixed size) buffers. For example, a bound T: StableDeref + AsMutSlice<Element = u8> + 'static will accepts types like &'static mut [u8] and &'static mut [u8; 128] -- all of them are appropriate for DMA transfers.

Minimal Supported Rust Version (MSRV)

This crate is guaranteed to compile on stable Rust 1.51 and up. It might compile on older versions but that may change in any new patch release.

Dependencies

~12KB