summaryrefslogtreecommitdiff
path: root/.emacs.d/snippets/rust-mode/implt
blob: 0ed9b7dd54a42dcdf73bf6551b3c4bf47e097d6e (plain)
1
2
3
4
5
6
7
# -*- mode: snippet -*-
# name: impl Trait for Type { ... }
# key: implt
# --
impl ${1:Trait} for ${2:Type} {
    $0
}