aboutsummaryrefslogtreecommitdiff
path: root/src/libs/intertrait/cast/rc.rs
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-11-06 14:06:22 +0100
committerHampusM <hampus@hampusmat.com>2022-11-06 14:06:22 +0100
commit3c993aa73c93f0fe335ced78d9709b39cdbd1935 (patch)
tree5b8d1d3bf743fe2383687d172caaee08df69a08b /src/libs/intertrait/cast/rc.rs
parente665c2a3ca9b15f406c8e12e4a7ab372fcad4d36 (diff)
refactor: improve cast error handling
Diffstat (limited to 'src/libs/intertrait/cast/rc.rs')
-rw-r--r--src/libs/intertrait/cast/rc.rs13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/libs/intertrait/cast/rc.rs b/src/libs/intertrait/cast/rc.rs
index 805bcd7..ec70544 100644
--- a/src/libs/intertrait/cast/rc.rs
+++ b/src/libs/intertrait/cast/rc.rs
@@ -30,12 +30,13 @@ impl<CastFromSelf: ?Sized + CastFrom> CastRc for CastFromSelf
self: Rc<Self>,
) -> Result<Rc<OtherTrait>, CastError>
{
- let caster =
- get_caster::<OtherTrait>((*self).type_id()).ok_or(CastError::CastFailed {
- from: type_name::<CastFromSelf>(),
- to: type_name::<OtherTrait>(),
- })?;
+ let caster = get_caster::<OtherTrait>((*self).type_id())
+ .map_err(CastError::GetCasterFailed)?;
- Ok((caster.cast_rc)(self.rc_any()))
+ (caster.cast_rc)(self.rc_any()).map_err(|err| CastError::CastFailed {
+ source: err,
+ from: type_name::<Self>(),
+ to: type_name::<OtherTrait>(),
+ })
}
}