Home
last modified time | relevance | path

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

/external/rust/crates/async-trait/src/
Dlifetime.rs9 pub struct CollectLifetimes { struct
15 impl CollectLifetimes { implementation
17 CollectLifetimes { in new()
47 impl VisitMut for CollectLifetimes { implementation
Dexpand.rs2 use crate::lifetime::{AddLifetimeToImplTrait, CollectLifetimes};
83 let mut lifetimes = CollectLifetimes::new("'impl"); in expand()
170 let mut lifetimes = CollectLifetimes::new("'life"); in transform_sig()
/external/rust/crates/pin-project-internal/src/
Dutils.rs42 struct CollectLifetimes(Vec<String>); in determine_lifetime_name() struct
44 impl VisitMut for CollectLifetimes { in determine_lifetime_name() implementation
52 let mut lifetimes = CollectLifetimes(Vec::new()); in determine_lifetime_name()