pub struct RouteId(pub u32);Expand description
Stable dispatch identifier for an action route. Registry interns string
names into RouteId at registration; kernel internal dispatch uses
RouteId only (“string-free dispatch”).
Tuple Fields§
§0: u32Trait Implementations§
Source§impl<'de> Deserialize<'de> for RouteId
impl<'de> Deserialize<'de> for RouteId
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Ord for RouteId
impl Ord for RouteId
Source§impl PartialOrd for RouteId
impl PartialOrd for RouteId
impl Copy for RouteId
impl Eq for RouteId
impl StructuralPartialEq for RouteId
Auto Trait Implementations§
impl Freeze for RouteId
impl RefUnwindSafe for RouteId
impl Send for RouteId
impl Sync for RouteId
impl Unpin for RouteId
impl UnsafeUnpin for RouteId
impl UnwindSafe for RouteId
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