cargo-minimize/prettyplease-forked/src/lifetime.rs
2023-01-22 13:48:22 +01:00

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);
}
}