Home
last modified time | relevance | path

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

/external/rust/crates/async-trait/src/
Dlifetime.rs5 pub struct CollectLifetimes { struct
12 impl CollectLifetimes { argument
14 CollectLifetimes { in new()
46 impl VisitMut for CollectLifetimes { implementation
Dexpand.rs1 use crate::lifetime::CollectLifetimes;
88 let mut lifetimes = CollectLifetimes::new("'impl", input.impl_token.span); in expand()
177 let mut lifetimes = CollectLifetimes::new("'life", default_span); in transform_sig()
/external/rust/crates/pin-project-internal/src/
Dutils.rs36 struct CollectLifetimes(Vec<String>); in determine_lifetime_name() struct
38 impl VisitMut for CollectLifetimes { in determine_lifetime_name() implementation
46 let mut lifetimes = CollectLifetimes(Vec::new()); in determine_lifetime_name()