diff options
author | HampusM <hampus@hampusmat.com> | 2022-07-28 20:36:53 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-07-31 12:17:51 +0200 |
commit | 545e8efddf217f300b26b930f8345d8573c30ec7 (patch) | |
tree | 41314bb8a452e70924aa007f11bea1f6338b3718 /src/libs/intertrait/cast/arc.rs | |
parent | f75a7d58135825c4f9094c1e10f36de4a952f455 (diff) |
refactor: add Intertrait cast error
Diffstat (limited to 'src/libs/intertrait/cast/arc.rs')
-rw-r--r-- | src/libs/intertrait/cast/arc.rs | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/src/libs/intertrait/cast/arc.rs b/src/libs/intertrait/cast/arc.rs index 4099ae7..f8e0f11 100644 --- a/src/libs/intertrait/cast/arc.rs +++ b/src/libs/intertrait/cast/arc.rs @@ -9,24 +9,36 @@ //! MIT license (LICENSE-MIT or <http://opensource.org/licenses/MIT>) //! //! at your option. +use std::any::type_name; use std::sync::Arc; +use error_stack::report; + +use crate::libs::intertrait::cast::error::CastError; use crate::libs::intertrait::{caster, CastFromSync}; pub trait CastArc { - /// Casts an `Arc` for this trait into that for type `T`. - fn cast<T: ?Sized + 'static>(self: Arc<Self>) -> Result<Arc<T>, Arc<Self>>; + /// Casts an `Arc` for this trait into that for type `OtherTrait`. + fn cast<OtherTrait: ?Sized + 'static>( + self: Arc<Self>, + ) -> error_stack::Result<Arc<OtherTrait>, CastError>; } /// A blanket implementation of `CastArc` for traits extending `CastFrom`, `Sync`, and `Send`. -impl<S: ?Sized + CastFromSync> CastArc for S +impl<CastFromSelf: ?Sized + CastFromSync> CastArc for CastFromSelf { - fn cast<T: ?Sized + 'static>(self: Arc<Self>) -> Result<Arc<T>, Arc<Self>> + fn cast<OtherTrait: ?Sized + 'static>( + self: Arc<Self>, + ) -> error_stack::Result<Arc<OtherTrait>, CastError> { - match caster::<T>((*self).type_id()) { + match caster::<OtherTrait>((*self).type_id()) { Some(caster) => Ok((caster.cast_arc)(self.arc_any())), - None => Err(self), + None => Err(report!(CastError).attach_printable(format!( + "From {} to {}", + type_name::<CastFromSelf>(), + type_name::<OtherTrait>() + ))), } } } |