commit | bf512f893a01cbcfb559d88d9f1aee7a4d2e3a81 | [log] [tgz] |
---|---|---|
author | James Farrell <[email protected]> | Wed May 08 21:53:08 2024 +0000 |
committer | James Farrell <[email protected]> | Wed May 08 21:53:08 2024 +0000 |
tree | d410ca28f07fe915eca0d218f39d99662e25dbfb | |
parent | 4d7f334de8424f0d0d2be8d8263f8e8de6041b83 [diff] |
Update Android.bp by running cargo_embargo Test: ran cargo_embargo Change-Id: I962f9c1eb35b686537fe4dca421812f5f628bbbb
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.