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 dd67e90 commit ce355aaCopy full SHA for ce355aa
from-env-derive/src/field.rs
@@ -1,7 +1,7 @@
1
use heck::ToPascalCase;
2
use proc_macro2::TokenStream;
3
use quote::quote;
4
-use syn::{spanned::Spanned, Ident, LitStr};
+use syn::{Ident, LitStr, spanned::Spanned};
5
6
/// A parsed Field of a struct
7
pub(crate) struct Field {
from-env-derive/src/lib.rs
use proc_macro::TokenStream as Ts;
-use syn::{parse_macro_input, DeriveInput};
+use syn::{DeriveInput, parse_macro_input};
mod field;
use field::Field;
0 commit comments