[automerger skipped] Mark ab/7061308 as merged in stage. am: 2bde94d36c -s ours am: 84f89fb9ee -s ours

am skip reason: Change-Id I6f984c276bb3b129f1387df2bc3d331a5cd1f634 with SHA-1 a4b4f729f9 is in history

Original change: undetermined

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I58ac5feb71da95c3bce8486d7925f51a82c46b4b
tree: ea68852a3b48b436d538623fc285812553ae69b0
  1. src/
  2. .cargo_vcs_info.json
  3. .clippy.toml
  4. .editorconfig
  5. .gitattributes
  6. .gitignore
  7. .rustfmt.toml
  8. Android.bp
  9. Cargo.toml
  10. Cargo.toml.orig
  11. CHANGELOG.md
  12. LICENSE-APACHE
  13. LICENSE-MIT
  14. METADATA
  15. MODULE_LICENSE_APACHE2
  16. OWNERS
  17. README.md
README.md

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.31+

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.