| commit | 0840946caef40f7ec9e527bd22c3fadaeb1506c1 | [log] [tgz] |
|---|---|---|
| author | Yiming Jing <[email protected]> | Fri Jul 16 13:17:09 2021 -0700 |
| committer | Yiming Jing <[email protected]> | Mon Jul 19 16:35:32 2021 -0700 |
| tree | d3d32479033875e0aaee81b99bd0939351efa3fd | |
| parent | ebb187258f97aff0a9e7a0e31b3233b5570f3266 [diff] |
Add Android.bp Bug: 193833713 Change-Id: I170a43bd69b7d6eeaba06652e6d6aefd958962a7
Helper macros for the rusticata project.
This crate contains some additions to nom.
For example, the error_if! macro allows to test a condition and return an error from the parser if the condition fails:
use rusticata_macros::error_if; let r : IResult<&[u8],()> = do_parse!( s, l: be_u8 >> error_if!(l < 4, ErrorKind::Verify) >> data: take!(l - 4) >> (()) );
See the documentation for more details and examples.
Different versions of this crate are available, depending on nom version.
rusticata-macros 0.3.x depends on nom 6rusticata-macros 0.2.x depends on nom 5Crate is documented, do running cargo doc will crate the offline documentation.
Reference documentation can be found here
be_var_u64 and le_var_u64Serialize for structures serializationq (quote) and align32upgrade_error and upgrade_error_tocustom_checkflat_takenewtype_enumparse_uint24 as deprecatedLicensed 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.