commit | 02eb2bf5fc11a2f7ccefafd975e62dff3fe35508 | [log] [tgz] |
---|---|---|
author | James Farrell <[email protected]> | Thu May 09 20:06:24 2024 +0000 |
committer | Automerger Merge Worker <[email protected]> | Thu May 09 20:06:24 2024 +0000 |
tree | 7a09f39cd070e69d1bcb8a476cb3b53982363b28 | |
parent | eaf37215f76b5406d5e71a6e897e0a3e52a76cc2 [diff] | |
parent | ace6caf6e4e2a2c26868aea53036c9a21914b93e [diff] |
Update Android.bp by running cargo_embargo am: ace6caf6e4 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/intrusive-collections/+/3080498 Change-Id: Ib98f2b60511426295c1c9d690ecba98e5331bc68 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.