////// Stores string types, etc.
///pubfnregister_string(key:&str,content:&str){let t =temp_file::with_contents(content.as_ref());println!("{:?}", t.path());}////// Stores integer types, etc.
///pubfnregister_int(key:&str,value:&[u8]){let t =temp_file::with_contents(value);println!("{:?}",t.path());}