Struct tempfile::file::PathPersistError[][src]

pub struct PathPersistError {
    pub error: Error,
    pub path: TempPath,
}

Error returned when persisting a temporary file path fails.

Fields

The underlying IO error.

The temporary file path that couldn't be persisted.

Trait Implementations

impl Debug for PathPersistError
[src]

Formats the value using the given formatter. Read more

impl From<PathPersistError> for Error
[src]

Performs the conversion.

impl From<PathPersistError> for TempPath
[src]

Performs the conversion.

impl Display for PathPersistError
[src]

Formats the value using the given formatter. Read more

impl Error for PathPersistError
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

🔬 This is a nightly-only experimental API. (error_type_id)

unclear whether to commit to this public implementation detail

Get the TypeId of self

Auto Trait Implementations

impl Send for PathPersistError

impl Sync for PathPersistError