Bug: 157243205

Clone this repo:
  1. dd09380 Update module with host_cross_supported by Ivan Lozano · 9 days ago main master
  2. e10a33d Update Android.bp by running cargo_embargo am: 8686508165 by James Farrell · 9 weeks ago
  3. 8686508 Update Android.bp by running cargo_embargo by James Farrell · 9 weeks ago
  4. af68bf9 Migrate to cargo_embargo. am: d00ce5421d am: 10834ab64a am: bbb41e98bf by Andrew Walbran · 8 months ago android14-qpr3-release android14-qpr3-s2-release android-14.0.0_r50 android-14.0.0_r51 android-14.0.0_r52 android-14.0.0_r53 android-14.0.0_r54
  5. 2a1dc1c Upgrade syn-mid to 0.6.0 am: 336bed4254 am: 62b3965582 am: 456bc78c98 by Andrew Walbran · 8 months ago

syn-mid

crates.io docs.rs license rustc build status

Providing the features between “full” and “derive” of syn.

This crate provides the following two unique data structures.

  • syn_mid::ItemFn -- A function whose body is not parsed.

    fn process(n: usize) -> Result<()> { ... }
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^     ^
    
  • syn_mid::Block -- A block whose body is not parsed.

    { ... }
    ^     ^
    

Other data structures are the same as data structures of syn. These are defined in this crate because they cannot be used in syn without “full” feature.

Usage

Add this to your Cargo.toml:

[dependencies]
syn-mid = "0.5"

Compiler support: requires rustc 1.56+

Examples

Optional features

  • clone-impls — Clone impls for all syntax tree types.

License

Licensed under either of Apache License, Version 2.0 or MIT license 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.