diff options
Diffstat (limited to 'Emacs/.config/emacs/.config/yasnippet/snippets/rust-mode/fromstr')
-rw-r--r-- | Emacs/.config/emacs/.config/yasnippet/snippets/rust-mode/fromstr | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/Emacs/.config/emacs/.config/yasnippet/snippets/rust-mode/fromstr b/Emacs/.config/emacs/.config/yasnippet/snippets/rust-mode/fromstr deleted file mode 100644 index db95288..0000000 --- a/Emacs/.config/emacs/.config/yasnippet/snippets/rust-mode/fromstr +++ /dev/null @@ -1,12 +0,0 @@ -# -*- mode: snippet -*- -# name: impl FromStr for Type { fn from_str(...) } -# key: fromstr -# -- -impl FromStr for ${1:Type} { - type Err = ${2:Error}; - - fn from_str(s: &str) -> Result<Self, Self::Err> { - - Ok(Self{}) - } -} |