commit | 7aa8661d998148277203e6e3b5b0e46ca402d5b1 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Mon Jan 22 18:43:48 2024 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Mon Jan 22 18:43:48 2024 +0000 |
tree | d2618b8cf461a238b69a2ff07ff803222c8fae74 | |
parent | 3fd5b4546aa3d0df69e532ffbce332417d2698a8 [diff] | |
parent | b92d58c3215a596bf289ca7b688dc3e9a774d783 [diff] |
Snap for 11341804 from b92d58c3215a596bf289ca7b688dc3e9a774d783 to build-tools-release Change-Id: Iadc5e0b62c3e0bbf94a1034007bf6f0656abd5f2
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.