[][src]Struct solana_libra_tools::tempdir::TempPath

pub struct TempPath(_);

A simple wrapper for creating a temporary directory that is automatically deleted when it's dropped.

We use this in lieu of tempfile because tempfile brings in too many dependencies.

Methods

impl TempPath[src]

pub fn new() -> Self[src]

Create new uninitialized temporary path, i.e. a file or directory isn't created automatically

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

Return the underlying path to this temporary directory.

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

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

Trait Implementations

impl AsRef<Path> for TempPath[src]

impl Debug for TempPath[src]

impl Drop for TempPath[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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<V, T> VZip<V> for T where
    V: MultiLane<T>,