commit | 10eacc9e20391d3c780f338a2eec95963df3f9d7 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Sun Mar 06 00:06:06 2022 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Sun Mar 06 00:06:06 2022 +0000 |
tree | 8dfc14e9819e551f9f5823e28ea764cabe9b7ca7 | |
parent | 4c87b01443b26f0fca77ed820f9279d18057fec2 [diff] | |
parent | b31c7fdb2703a87dba0c72809e58720aa5dbe7b0 [diff] |
Snap for 8261343 from b31c7fdb2703a87dba0c72809e58720aa5dbe7b0 to tm-release Change-Id: I7a46ada817ba8bffa4ee008759cdf95c7ab1dbea
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.