pub trait AsChainInner<I>where
Self: Sized + Sealed,{
// Required methods
fn as_inner(&self) -> &I;
fn as_inner_mut(&mut self) -> &mut I;
}
Expand description
Trait implemented on chains and their inner types, allowing you to get a reference to the inner type regardless of if the chain or the inner type is passed in
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.