summaryrefslogtreecommitdiff
path: root/.emacs.d/snippets/rust-mode/drop
blob: ba23a5b0f1306673e7a86a06b652a7460897efc1 (plain)
1
2
3
4
5
6
7
8
9
# -*- mode: snippet -*-
# name: impl Drop for Type { fn drop(...) }
# key: drop
# --
impl Drop for ${1:Type} {
    fn drop(&mut self) {
        $0
    }
}