commit | e5a40899a0b0ea6a3c97ef9e7c6c7faccc232812 | [log] [tgz] |
---|---|---|
author | Sam Saccone <[email protected]> | Tue Jul 18 21:49:21 2023 +0000 |
committer | Automerger Merge Worker <[email protected]> | Tue Jul 18 21:49:21 2023 +0000 |
tree | 6bc14eb1fbb6be783d98cd3947d7343824c7d716 | |
parent | a87e009c5302a12120f52fe0514c810a7a0be202 [diff] | |
parent | e0e88b1e6524f4c5e17d2c577d0b9494bfd9a412 [diff] |
Move OWNER reference master=>main. am: a92dd02d11 am: 8e0acc39e6 am: f0845388f5 am: e0e88b1e65 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/rusticata-macros/+/2661042 Change-Id: I01f224e50cc1c4d9016623225a94c548b0575f92 Signed-off-by: Automerger Merge Worker <[email protected]>
Helper macros for the rusticata project.
This crate contains some additions to nom.
For example, the [combinator::cond_else
] function allows to apply the first parser if the condition is true, and the second if the condition is false:
use rusticata_macros::combinator::cond_else; let r: IResult<_, _, ()> = cond_else( || s.len() > 1, be_u16, map(be_u8, u16::from) )(s);
See the documentation for more details and examples.
Different versions of this crate are available, depending on nom version.
rusticata-macros
4.x depends on nom 7rusticata-macros
3.x depends on nom 6rusticata-macros
2.x depends on nom 5Crate is documented, do running cargo doc
will crate the offline documentation.
Reference documentation can be found here
slice_fixed
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.