pub struct RouterInner {
pub extensions: Extensions,
/* private fields */
}Expand description
Internal mutable router state
This struct holds the router configuration during the build phase. It’s protected by a RwLock for safe concurrent access.
Fields§
§extensions: ExtensionsShared state extensions
Auto Trait Implementations§
impl Freeze for RouterInner
impl !RefUnwindSafe for RouterInner
impl Send for RouterInner
impl Sync for RouterInner
impl Unpin for RouterInner
impl !UnwindSafe for RouterInner
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