Docs.rs
procmeta-core-0.3.5
procmeta-core 0.3.5
Permalink
Docs.rs crate page
MIT
Links
crates.io
Source
Owners
git-lloyd
Dependencies
heck ^0.5
normal
proc-macro2 ^1.0
normal
quote ^1.0
normal
syn ^2.0
normal
Versions
0%
of the crate is documented
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
Files
procmeta_core/
parser.rs
1
use
syn::Meta;
2
3
pub trait
MetaParser: Sized {
4
fn
parse(meta:
&
Meta) -> syn::Result<
Self
>;
5
}