pub trait IntoNavigationEntry<W, H, C, N>where
W: ArrayLength,
H: ArrayLength,
C: Send + Clone + Sync + 'static,
N: NavigationEntry<W, H, C>,{
// Required method
fn into_navigation_entry(self) -> N;
}Expand description
A helper trait for creating navigation entries.
This trait provides a method for creating a navigation entry with a specific view.
Required Methods§
Convert this type into a navigation entry.