pub struct ReactiveListOptions<T: Clone + Send + Sync + 'static> {
pub name: String,
pub backend: Option<Box<dyn ListBackend<T>>>,
pub mutation_log: bool,
}Expand description
Options for constructing a ReactiveList.
Fields§
§name: String§backend: Option<Box<dyn ListBackend<T>>>§mutation_log: boolTrait Implementations§
Auto Trait Implementations§
impl<T> Freeze for ReactiveListOptions<T>
impl<T> !RefUnwindSafe for ReactiveListOptions<T>
impl<T> Send for ReactiveListOptions<T>
impl<T> Sync for ReactiveListOptions<T>
impl<T> Unpin for ReactiveListOptions<T>
impl<T> UnsafeUnpin for ReactiveListOptions<T>
impl<T> !UnwindSafe for ReactiveListOptions<T>
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