7 lines
134 B
Rust
7 lines
134 B
Rust
pub struct LogOnDrop(pub &'static str);
|
|
|
|
impl Drop for LogOnDrop {
|
|
fn drop(&mut self) {
|
|
log::info!("{}", self.0);
|
|
}
|
|
}
|