blob: 15653bfc9119e5f521c79d4c43d8dd92593a52f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#![allow(clippy::module_name_repetitions)]
use quote::ToTokens;
use syn::punctuated::Pair;
pub fn syn_path_to_string(path: &syn::Path) -> String
{
path.segments
.pairs()
.map(Pair::into_tuple)
.map(|(segment, opt_punct)| {
let segment_ident = &segment.ident;
format!(
"{}{}",
segment_ident,
opt_punct.map_or_else(String::new, |punct| punct
.to_token_stream()
.to_string())
)
})
.collect()
}
|