Change summary
crates/util/src/rel_path.rs | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
Detailed changes
@@ -161,7 +161,7 @@ impl RelPath {
false
}
- pub fn strip_prefix<'a>(&'a self, other: &Self) -> Result<&'a Self> {
+ pub fn strip_prefix<'a>(&'a self, other: &Self) -> Result<&'a Self, StripPrefixError> {
if other.is_empty() {
return Ok(self);
}
@@ -172,7 +172,7 @@ impl RelPath {
return Ok(Self::empty());
}
}
- Err(anyhow!("failed to strip prefix: {other:?} from {self:?}"))
+ Err(StripPrefixError)
}
pub fn len(&self) -> usize {
@@ -251,6 +251,9 @@ impl RelPath {
}
}
+#[derive(Debug)]
+pub struct StripPrefixError;
+
impl ToOwned for RelPath {
type Owned = RelPathBuf;