Function sgx_tstd::sgxfs::read [−][src]
pub fn read<P: AsRef<Path>>(path: P) -> Result<Vec<u8>>
Read the entire contents of a file into a bytes vector.
This is a convenience function for using SgxFile::open and read_to_end with fewer imports and without an intermediate variable.
Errors
This function will return an error if path
does not already exist.
Other errors may also be returned according to OpenOptions::open.
It will also return an error if it encounters while reading an error of a kind other than ErrorKind::Interrupted.