Struct tempfile::file::PathPersistError [−][src]
Error returned when persisting a temporary file path fails.
Fields
error: Error
The underlying IO error.
path: TempPath
The temporary file path that couldn't be persisted.
Trait Implementations
impl Debug for PathPersistError[src]
impl Debug for PathPersistErrorfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl From<PathPersistError> for Error[src]
impl From<PathPersistError> for Errorfn from(error: PathPersistError) -> Error[src]
fn from(error: PathPersistError) -> ErrorPerforms the conversion.
impl From<PathPersistError> for TempPath[src]
impl From<PathPersistError> for TempPathfn from(error: PathPersistError) -> TempPath[src]
fn from(error: PathPersistError) -> TempPathPerforms the conversion.
impl Display for PathPersistError[src]
impl Display for PathPersistErrorfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Error for PathPersistError[src]
impl Error for PathPersistErrorfn description(&self) -> &str[src]
fn description(&self) -> &strThis method is soft-deprecated. Read more
fn cause(&self) -> Option<&Error>[src]
fn cause(&self) -> Option<&Error>The lower-level cause of this error, if any. Read more
fn type_id(&self) -> TypeId where
Self: 'static, [src]
fn type_id(&self) -> TypeId where
Self: 'static, 🔬 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 Send for PathPersistErrorimpl Sync for PathPersistError
impl Sync for PathPersistError