pub trait ResolvedChain: Component<Mutability = Mutable> + Sized {
// Required methods
fn from_inner(inner: ResolvedFilterChain) -> Self;
fn inner(&self) -> &ResolvedFilterChain;
fn inner_mut(&mut self) -> &mut ResolvedFilterChain;
}Expand description
Output side of one resolve_chains instance — a component wrapping (or
being) a ResolvedFilterChain. The newtype projection keeps every
downstream consumer (extract, transitions, animations, devtools) on the
one inner type.
Required Methods§
fn from_inner(inner: ResolvedFilterChain) -> Self
fn inner(&self) -> &ResolvedFilterChain
fn inner_mut(&mut self) -> &mut ResolvedFilterChain
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".