zoodex/src/utility.rs

4 lines
96 B
Rust
Raw Normal View History

pub fn leak < 'l , Type > ( inner : Type ) -> & 'l Type {
2024-11-20 16:32:37 +01:00
Box :: leak ( Box :: new (inner) )
}