DEBSOURCES
Skip Quicknav
sources / yasnippet-snippets / 0~git20161123-1 / rust-mode / drop
123456789
# -*- mode: snippet -*- # name: impl Drop for Type { fn drop(...) } # key: drop # -- impl Drop for ${1:Type} { fn drop(&mut self) { $0 } }