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