summaryrefslogtreecommitdiff
path: root/.emacs.d/snippets/rust-mode/pafnr
blob: 3ce96818fcafb8f2d9a823f45548e1b7a3c14e1b (plain)
1
2
3
4
5
6
7
# -*- mode: snippet -*-
# name: pub async fn name() -> Type { ... }
# key: pafnr
# --
pub async fn ${1:name}($2) -> ${3:Type} {
    $0
}