dotfiles/.emacs.d/snippets/rust-mode/drop

9 lines
159 B
Plaintext
Raw Normal View History

2017-12-21 17:29:29 +01:00
# -*- mode: snippet -*-
# name: impl Drop for Type { fn drop(...) }
# key: drop
# --
impl Drop for ${1:Type} {
fn drop(&mut self) {
$0
}
}