home

My NixOS systems configurations.
Log | Files | Refs | LICENSE

implClone (139B)


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