| commit | cdd622eb56b4081a8be799bd8a15af6adc89c9a6 | [log] [tgz] | 
|---|---|---|
| author | David Brazdil <dbrazdil@google.com> | Tue Jan 24 18:55:44 2023 +0000 | 
| committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Tue Jan 24 18:55:44 2023 +0000 | 
| tree | 216cab5858730c7e1b9deb3e11ed88254226397d | |
| parent | 95425b66ba9a433c2d44eed632b47a878a9bc8db [diff] | |
| parent | b6e0028890b57da1a9ca93323a2f4c529557469c [diff] | 
Update TEST_MAPPING am: ac56e3199f am: 7374eb35cf am: b6e0028890 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/rusticata-macros/+/2398968 Change-Id: I57acd0716b26610985b5c80b7e5e3610e5bd9837 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
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_fixedbe_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.