1use crate::as_clone::AsClone; 2 3impl AsClone<String> for String { 4 fn as_clone(&self) -> String { 5 self.clone() 6 } 7}