Enum jujutsu_lib::working_copy::SnapshotError
source · pub enum SnapshotError {
IoError {
message: String,
err: Error,
},
InvalidUtf8Path {
path: OsString,
},
InvalidUtf8SymlinkTarget {
path: PathBuf,
target: PathBuf,
},
InternalBackendError(BackendError),
}Variants§
Trait Implementations§
source§impl Debug for SnapshotError
impl Debug for SnapshotError
source§impl Display for SnapshotError
impl Display for SnapshotError
source§impl Error for SnapshotError
impl Error for SnapshotError
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<BackendError> for SnapshotError
impl From<BackendError> for SnapshotError
source§fn from(source: BackendError) -> Self
fn from(source: BackendError) -> Self
Converts to this type from the input type.