pub struct RouteMetaKey<T: 'static> { /* private fields */ }Expand description
Typed key for route metadata.
Metadata is declared inside RouteComponent::config() through
RouteConfig::meta. This keeps route policy local to the route
component while preserving Pocopine’s central App::route(...)
URL table. This is Vue Router-style route metadata for app UI and
policy; document head metadata belongs in a separate PageMeta
surface.
Implementations§
Trait Implementations§
Source§impl<T: 'static> Clone for RouteMetaKey<T>
impl<T: 'static> Clone for RouteMetaKey<T>
impl<T: 'static> Copy for RouteMetaKey<T>
Auto Trait Implementations§
impl<T> Freeze for RouteMetaKey<T>
impl<T> RefUnwindSafe for RouteMetaKey<T>
impl<T> Send for RouteMetaKey<T>
impl<T> Sync for RouteMetaKey<T>
impl<T> Unpin for RouteMetaKey<T>
impl<T> UnsafeUnpin for RouteMetaKey<T>
impl<T> UnwindSafe for RouteMetaKey<T>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more