[−][src]Crate syn_mid
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. Also, if the "full" feature is enabled, those items are reexported from syn.
Note that if you use syn with "full" feature and use syn-mid without "full" feature at the same time, errors due to type mismatch may occur.
Optional features
syn-mid in the default features aims to provide the features between "full" and "derive" of syn.
derive
(enabled by default) — Data structures for representing the possible input to a custom derive, including structs and enums and types.full
— Data structures for representing the syntax tree of all valid Rust source code, including items and expressions.clone-impls
(enabled by default) — Clone impls for all syntax tree types.extra-traits
— Debug, Eq, PartialEq, Hash impls for all syntax tree types.
Note that if both "derive" and "full" features are disabled, a compile error occurs.
Structs
ArgCaptured | An explicitly typed pattern captured by a function signature. |
ArgSelf | Self captured by value in a function signature: |
ArgSelfRef | Self captured by reference in a function signature: |
Block | A braced block containing Rust statements. |
FieldPat | A single field in a struct pattern. |
FnDecl | Header of a function declaration, without including the body. |
ItemFn | A free-standing function: |
PatBox | A box pattern: |
PatIdent | A pattern that binds a new variable: |
PatLit | A literal pattern: |
PatMacro | A macro in expression position. |
PatPath | A path pattern like |
PatRange | A range pattern: |
PatRef | A reference pattern: |
PatSlice | A dynamically sized slice pattern: |
PatStruct | A struct or struct variant pattern: |
PatTuple | A tuple pattern: |
PatTupleStruct | A tuple struct or tuple variant pattern: |
PatVerbatim | Tokens in pattern position not interpreted by Syn. |
PatWild | A pattern that matches any value: |
Enums
FnArg | An argument in a function signature: the |
Pat | A pattern in a local binding, function signature, match expression, or various other places. |
RangeLimits | Limit types of a range, inclusive or exclusive. |