Hi,
Is there a simpler way to get at the values of the data structure, such that when I do:
println!("Name: {:?}", &name.value);
which results in:
Name: Some("Robert Eugene /Williams/")
ideally results in
Name: "Robert Eugene /Williams/"
without the "Some()" parts?
Thanks!