blob: 88182ccb429bf55fe3b8053cd8b9e695bddaf197 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
use std::fmt::Write;
use quote::ToTokens;
use syn::punctuated::Pair;
pub trait SynPathExt
{
/// Converts the [`syn::Path`] to a [`String`].
fn to_string(&self) -> String;
}
impl SynPathExt for syn::Path
{
fn to_string(&self) -> String
{
self.segments.pairs().map(Pair::into_tuple).fold(
String::new(),
|mut acc, (segment, opt_punct)| {
let segment_ident = &segment.ident;
write!(
acc,
"{segment_ident}{}",
opt_punct
.map(|punct| punct.to_token_stream().to_string())
.unwrap_or_default()
)
.ok();
acc
},
)
}
}
|