commit | 13be76abda0c886dabd340b8c9973ad0b1d8b75f | [log] [tgz] |
---|---|---|
author | James Farrell <[email protected]> | Tue Aug 06 22:40:00 2024 +0000 |
committer | Automerger Merge Worker <[email protected]> | Tue Aug 06 22:40:00 2024 +0000 |
tree | 5353359fb151c3b7c0c86f149d686a273379b329 | |
parent | 81076caf4baca6178b1f1220f314296cfb5b2944 [diff] | |
parent | b8583b47097382d31f0fc5b2f739cd93438f7414 [diff] |
Update Android.bp by running cargo_embargo am: 4d12d75c8f am: b8583b4709 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/predicates/+/3208384 Change-Id: I6b9ee19aaa19b2b7feba66f25558ae731e610a40 Signed-off-by: Automerger Merge Worker <[email protected]>
An implementation of boolean-valued predicate functions in Rust.
First, add this to your Cargo.toml
:
[dependencies] predicates = "3.0.4"
Next, add this to your crate:
extern crate predicates; use predicates::prelude::*;
For more information on using predicates, look at the documentation
predicates-rs
is distributed under the terms of both the MIT license and the Apache License (Version 2.0).
See LICENSE-APACHE, and LICENSE-MIT for details.
Big thanks to futures-rs, whose slick API design informed a lot of decisions made on the API design of this library.