Last active
September 18, 2019 00:18
-
-
Save atroche/9bbe68f8df1a86b0baace450f07d3f65 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#[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