commit | b91407584d17fe574b8a853b970b9e2d7d6b7443 | [log] [tgz] |
---|---|---|
author | James Farrell <[email protected]> | Tue May 21 15:04:01 2024 +0000 |
committer | Automerger Merge Worker <[email protected]> | Tue May 21 15:04:01 2024 +0000 |
tree | 4cef5d97ee2baefc02c24b36d71172f107222cbe | |
parent | e9e0f5e4dbad8eed04d1b60a3fde97870ee9c765 [diff] | |
parent | 0576f498ffe4b5c18a0ddefa3d1527ead46d9d10 [diff] |
Update Android.bp by running cargo_embargo am: 40703a9fe1 am: 0576f498ff Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/intrusive-collections/+/3094308 Change-Id: I4ad0c7605be6bd707ab12e849c0b6a6b4bf69697 Signed-off-by: Automerger Merge Worker <[email protected]>
A Rust library for creating intrusive collections. Currently supports singly-linked and doubly-linked lists, as well as red-black trees.
#[no_std]
.Cursor
-based interface, which allows safe mutation while iterating.For examples and more information, see the documentation (crates.io, master).
Add this to your Cargo.toml
:
[dependencies] intrusive-collections = "0.9"
This crate has two Cargo features:
nightly
: Enables nightly-only features: const fn
constructors for collections (Link
constructors are always const fn
)alloc
(enabled by default): Implements IntrusivePointer
for Box
, Rc
and Arc
.Licensed under either of
at your option.
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.