[][src]Struct vmm_sys_util::tempfile::TempFile

pub struct TempFile { /* fields omitted */ }

Wrapper for working with temporary files.

The file will be maintained for the lifetime of the TempFile object.

Methods

impl TempFile[src]

pub fn new<P: AsRef<OsStr>>(prefix: P) -> Result<TempFile>[src]

Creates the TempFile

Arguments

prefix: The path and filename where to creat the temporary file. Six random alphanumeric characters will be added to the end of this to form the filename.

pub fn remove(&mut self) -> Result<()>[src]

Removes the temporary file.

Calling this is optional as dropping a TempFile object will also remove the file. Calling remove explicitly allows for better error handling.

pub fn as_path(&self) -> &Path[src]

Returns the path to the tempfile if it is currently valid

pub fn as_file(&self) -> &File[src]

Returns a reference to the File

Trait Implementations

impl Drop for TempFile[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]