rrs 0.0.7

A cross-platform GUI toolkit in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
///
/// Stores string types, etc.
///
pub fn register_string(key: &str,content: &str) {
    let t = temp_file::with_contents(content.as_ref());
    println!("{:?}", t.path());
}

///
/// Stores integer types, etc.
///
pub fn register_int(key: &str,value: &[u8]) {
    let t = temp_file::with_contents(value);
    println!("{:?}",t.path());
}