//! Originally from Intertrait by CodeChain //! //! //! //! //! Licensed under either of //! //! Apache License, Version 2.0 (LICENSE-APACHE or ) //! MIT license (LICENSE-MIT or ) //! //! 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 `OtherTrait`. fn cast( self: Arc, ) -> error_stack::Result, CastError>; } /// A blanket implementation of `CastArc` for traits extending `CastFrom`, `Sync`, and `Send`. impl CastArc for CastFromSelf { fn cast( self: Arc, ) -> error_stack::Result, CastError> { match caster::((*self).type_id()) { Some(caster) => Ok((caster.cast_arc)(self.arc_any())), None => Err(report!(CastError).attach_printable(format!( "From {} to {}", type_name::(), type_name::() ))), } } }