Skip to content

Instantly share code, notes, and snippets.

@rockerBOO
Created August 22, 2020 23:05
Show Gist options
  • Save rockerBOO/ced1c074461531a1cea1b1a6eef87f46 to your computer and use it in GitHub Desktop.
Save rockerBOO/ced1c074461531a1cea1b1a6eef87f46 to your computer and use it in GitHub Desktop.
impl From<&str> for Person {
fn from(s: &str) -> Person {
match s.split(",").collect() {
[age, name] => Person {
age
name
},
_ -> Person::default()
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment