Home
last modified time | relevance | path

Searched refs:Lifetimes (Results 1 – 1 of 1) sorted by relevance

/linux/rust/syn/
H A Dgenerics.rs110 pub fn lifetimes(&self) -> impl Iterator<Item = &LifetimeParam> [Lifetimes] {
111 Lifetimes(self.params.iter())
187 pub struct Lifetimes<'a>(Iter<'a, GenericParam>); struct
189 impl<'a> Iterator for Lifetimes<'a> { implementation