zoodex/src/utility.rs

8 lines
201 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) )
}
2025-02-18 17:40:32 +01:00
pub fn leak_mut < 'l , Type > ( inner : Type ) -> & 'l mut Type {
Box :: leak ( Box :: new (inner) )
}