We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84379ef commit 8f9789cCopy full SHA for 8f9789c
src/lib.rs
@@ -27,6 +27,14 @@
27
//! using [`Array`] with the syntax `[a, b, c]` and [`Options`](Option) that will be [`None`] if
28
//! not specified and [`Some`] when the value is specified via the attribute. It is not
29
//! specified via `Some(value)` but as just `value`.
30
+//!
31
+//! ## Limitations
32
33
+//! There are some limitations in syntax parsing that will be lifted future releases.
34
35
+//! - literals in top level (meaning something like `#[attr(42, 3.14, "hi")]`
36
+//! - function like arguments (something like `#[attr(view(a = "test"))]`
37
+//! - other syntaxes, maybe something like `key: value`
38
use std::fmt::Display;
39
40
use proc_macro2::{Literal, Span};
0 commit comments