pub trait AppPathwayExt {
// Required methods
fn insert_pathway<P>(&mut self, backend: P::Backend) -> &mut Self
where P: Pathway<Backend: for<'a> Backend<P::Key<'a>> + Send + Sync + 'static>;
fn init_pathway<P>(&mut self) -> &mut Self
where P: Pathway<Backend: FromWorld + for<'a> Backend<P::Key<'a>> + Send + Sync + 'static>;
}Required Methods§
Sourcefn insert_pathway<P>(&mut self, backend: P::Backend) -> &mut Self
fn insert_pathway<P>(&mut self, backend: P::Backend) -> &mut Self
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.