summaryrefslogtreecommitdiff
path: root/.emacs.d/snippets/rust-mode/fnw
blob: 321c29217e80089ce3cea52b06a1fb39807af6d7 (plain)
1
2
3
4
5
6
7
# -*- mode: snippet -*-
# name: fn name<T>(x: T) where T: Clone { ... }
# key: fnw
# --
fn ${1:name}<${2:T}>(${3:x: T}) where ${4:T: Clone} {
    $0
}