Add OWNERS am: 291c13bec1 am: e76e98f38b

Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/syn-mid/+/1356767

Change-Id: I8ff480dd2e7d7e9cdcc498d91cbaf5b385487a94
tree: 664191c4a2aa240b0b054dd8e0f422cdadf4e5c6
  1. .github/
  2. ci/
  3. src/
  4. .cargo_vcs_info.json
  5. .editorconfig
  6. .gitattributes
  7. .gitignore
  8. .rustfmt.toml
  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-badge docs-badge license-badge rustc-badge

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"

The current syn-mid requires Rust 1.31 or later.

Examples

Documentation

Optional features

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

License

Licensed under either of

at your option.

Contribution

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.