Skip to content

Instantly share code, notes, and snippets.

@atroche
Last active September 18, 2019 00:18
Show Gist options
  • Save atroche/9bbe68f8df1a86b0baace450f07d3f65 to your computer and use it in GitHub Desktop.
Save atroche/9bbe68f8df1a86b0baace450f07d3f65 to your computer and use it in GitHub Desktop.
#[derive(Debug)]
struct MyKey(String);
impl From<&'static str> for MyKey {
#[inline(always)]
fn from(data: &'static str) -> MyKey {
MyKey(data.into())
}
}
impl From<String> for MyKey {
fn from(data: String) -> MyKey {
MyKey(data)
}
}
fn main() {
let string: String = "testing".into();
let my_key = MyKey::from(string.clone());
dbg!(my_key);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment