1use std::str::FromStr; 2 3fn main() { 4 let drop_string = drop_box::DropBox::new("UwU".to_owned(), |s| { 5 println!("Drop function called for {}", s) 6 }); 7 println!("My drop string is: {}", drop_string.to_owned()); 8}