commit | 9929dda89086609194c65cfd54a06f9c5b52d44c | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Fri Jul 07 04:52:56 2023 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Fri Jul 07 04:52:56 2023 +0000 |
tree | 95cb488307c04b8942d85975d0676fb4c1e1ce04 | |
parent | 27c9cc9fb95a7ae1eea61cfc5523afeb6108826a [diff] | |
parent | 254bcbe9dfa0a067c44aa2656c5c8592b9290c02 [diff] |
Snap for 10453563 from 254bcbe9dfa0a067c44aa2656c5c8592b9290c02 to mainline-documentsui-release Change-Id: Ia815a73ce8ff04aecdd808f70f4874f1eb058a7a
A secure, cross-platform, temporary file library for Rust. In addition to creating temporary files, this library also allows users to securely open multiple independent references to the same temporary file (useful for consumer/producer patterns and surprisingly difficult to implement securely).
Minimum required Rust version: 1.40.0
Add this to your Cargo.toml
:
[dependencies] tempfile = "3"
use std::fs::File; use std::io::{Write, Read, Seek, SeekFrom}; fn main() { // Write let mut tmpfile: File = tempfile::tempfile().unwrap(); write!(tmpfile, "Hello World!").unwrap(); // Seek to start tmpfile.seek(SeekFrom::Start(0)).unwrap(); // Read let mut buf = String::new(); tmpfile.read_to_string(&mut buf).unwrap(); assert_eq!("Hello World!", buf); }