pub struct KeyedProps<T: 'static, F, K, Key>{
pub iterable: StateHandle<Vec<T>>,
pub template: F,
pub key: K,
}
Expand description
Props for Keyed
.
Fields§
§iterable: StateHandle<Vec<T>>
§template: F
§key: K
Auto Trait Implementations§
impl<T, F, K, Key> Freeze for KeyedProps<T, F, K, Key>
impl<T, F, K, Key> !RefUnwindSafe for KeyedProps<T, F, K, Key>
impl<T, F, K, Key> !Send for KeyedProps<T, F, K, Key>
impl<T, F, K, Key> !Sync for KeyedProps<T, F, K, Key>
impl<T, F, K, Key> Unpin for KeyedProps<T, F, K, Key>
impl<T, F, K, Key> !UnwindSafe for KeyedProps<T, F, K, Key>
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