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