Struct camino_tempfile::Utf8PathPersistError
source · pub struct Utf8PathPersistError {
pub error: Error,
pub path: Utf8TempPath,
}
Expand description
Error returned when persisting a temporary file path fails.
Fields§
§error: Error
The underlying IO error.
path: Utf8TempPath
The temporary file path that couldn’t be persisted.
Trait Implementations§
source§impl Debug for Utf8PathPersistError
impl Debug for Utf8PathPersistError
source§impl Display for Utf8PathPersistError
impl Display for Utf8PathPersistError
source§impl Error for Utf8PathPersistError
impl Error for Utf8PathPersistError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<Utf8PathPersistError> for Error
impl From<Utf8PathPersistError> for Error
source§fn from(error: Utf8PathPersistError) -> Error
fn from(error: Utf8PathPersistError) -> Error
Converts to this type from the input type.
source§impl From<Utf8PathPersistError> for Utf8TempPath
impl From<Utf8PathPersistError> for Utf8TempPath
source§fn from(error: Utf8PathPersistError) -> Utf8TempPath
fn from(error: Utf8PathPersistError) -> Utf8TempPath
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for Utf8PathPersistError
impl Send for Utf8PathPersistError
impl Sync for Utf8PathPersistError
impl Unpin for Utf8PathPersistError
impl !UnwindSafe for Utf8PathPersistError
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more