Home
last modified time | relevance | path

Searched defs:Droppable (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/async-trait/tests/
Dtest.rs1532 pub struct Droppable; struct
1534 impl Drop for Droppable { implementation
1542 async fn f(arg: Tuple<Droppable, i32>); in f()
1549 async fn f(Tuple(_, _int): Tuple<Droppable, i32>) {} in f()
/external/rust/crates/hashbrown/src/
Dmap.rs6701 struct Droppable { struct
6702 k: usize,
6705 impl Droppable { impl
6706 fn new(k: usize) -> Droppable { in new()
6715 impl Drop for Droppable { implementation
6723 impl Clone for Droppable { implementation