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 } }