pub struct ReactiveView<C, S> {
pub delta: Node<C>,
pub snapshot: Node<S>,
pub pull_id: LockId,
/* private fields */
}Expand description
ReactiveView data container.
Fields§
§delta: Node<C>delta field for delta.
snapshot: Node<S>snapshot field for snapshot.
pull_id: LockIdpull_id field for pull id.
Implementations§
Source§impl<C, S> ReactiveView<C, S>
impl<C, S> ReactiveView<C, S>
Trait Implementations§
Auto Trait Implementations§
impl<C, S> Freeze for ReactiveView<C, S>
impl<C, S> !RefUnwindSafe for ReactiveView<C, S>
impl<C, S> !Send for ReactiveView<C, S>
impl<C, S> !Sync for ReactiveView<C, S>
impl<C, S> Unpin for ReactiveView<C, S>
impl<C, S> UnsafeUnpin for ReactiveView<C, S>
impl<C, S> !UnwindSafe for ReactiveView<C, S>
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