1# -*- mode: snippet -*- 2# name: implClone 3# key: Clone 4# -- 5impl$2 Clone for ${1:Type}$2 { 6 fn clone(&self) -> Self { 7 $0 8 } 9}