mirror of
https://github.com/Noratrieb/cargo-minimize.git
synced 2026-01-14 16:35:01 +01:00
9 lines
189 B
Rust
9 lines
189 B
Rust
use crate::algorithm::Printer;
|
|
use syn::Lifetime;
|
|
|
|
impl Printer {
|
|
pub fn lifetime(&mut self, lifetime: &Lifetime) {
|
|
self.word("'");
|
|
self.ident(&lifetime.ident);
|
|
}
|
|
}
|