commit | 61cef48e8884f4b2de4557f6fbbd75aea240ada6 | [log] [tgz] |
---|---|---|
author | Bob Badour <[email protected]> | Wed Aug 04 21:03:49 2021 +0000 |
committer | Automerger Merge Worker <[email protected]> | Wed Aug 04 21:03:49 2021 +0000 |
tree | 1a79b93a17d63e669537d9add2422cbf17334d4b | |
parent | adaf2ee0640f263b3069ce4a90c1d65314444f36 [diff] | |
parent | 0210f260299e1bea3ae662cc77e52a2edd84be88 [diff] |
[LSC] Add LOCAL_LICENSE_KINDS to external/rust/crates/rusticata-macros am: ae59e8e6f6 am: 0210f26029 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/rusticata-macros/+/1783991 Change-Id: I416317f448b8f48169fad401c615388867f4ce1d
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_u64
Serialize
for structures serializationq
(quote) and align32
upgrade_error
and upgrade_error_to
custom_check
flat_take
newtype_enum
parse_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.