pub struct RouterBaseProps<R, F, I>{ /* private fields */ }
Expand description
Props for RouterBase
.
Implementations§
Source§impl<R, F, I> RouterBaseProps<R, F, I>
impl<R, F, I> RouterBaseProps<R, F, I>
Sourcepub fn new(integration: I, view: F, route: R) -> Self
pub fn new(integration: I, view: F, route: R) -> Self
Create a new RouterBaseProps
.
Trait Implementations§
Source§impl<R, F, I> Debug for RouterBaseProps<R, F, I>where
R: Route + 'static + Debug,
F: FnOnce(ReadSignal<R>) -> View + 'static + Debug,
I: Integration + Debug,
impl<R, F, I> Debug for RouterBaseProps<R, F, I>where
R: Route + 'static + Debug,
F: FnOnce(ReadSignal<R>) -> View + 'static + Debug,
I: Integration + Debug,
Source§impl<R, F, I> Props for RouterBaseProps<R, F, I>
impl<R, F, I> Props for RouterBaseProps<R, F, I>
Auto Trait Implementations§
impl<R, F, I> Freeze for RouterBaseProps<R, F, I>
impl<R, F, I> RefUnwindSafe for RouterBaseProps<R, F, I>
impl<R, F, I> Send for RouterBaseProps<R, F, I>
impl<R, F, I> Sync for RouterBaseProps<R, F, I>
impl<R, F, I> Unpin for RouterBaseProps<R, F, I>
impl<R, F, I> UnwindSafe for RouterBaseProps<R, F, I>
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