pub struct IndexedProps<T: 'static, F>where
F: Fn(T) -> TemplateResult,{
pub iterable: StateHandle<Vec<T>>,
pub template: F,
}
Expand description
Props for Indexed
.
Fields§
§iterable: StateHandle<Vec<T>>
§template: F
Auto Trait Implementations§
impl<T, F> Freeze for IndexedProps<T, F>where
F: Freeze,
impl<T, F> !RefUnwindSafe for IndexedProps<T, F>
impl<T, F> !Send for IndexedProps<T, F>
impl<T, F> !Sync for IndexedProps<T, F>
impl<T, F> Unpin for IndexedProps<T, F>where
F: Unpin,
impl<T, F> !UnwindSafe for IndexedProps<T, F>
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