pub struct ReactiveCascadingCache<V: Clone + 'static> {
pub value: Node<V>,
pub status: Node<CascadingCacheStatus>,
pub events: Node<CascadingCacheEvent<V>>,
}Expand description
Graph-visible bundle returned by reactive_cascading_cache.
Fields§
§value: Node<V>value field for value.
status: Node<CascadingCacheStatus>status field for status.
events: Node<CascadingCacheEvent<V>>events field for events.
Auto Trait Implementations§
impl<V> Freeze for ReactiveCascadingCache<V>
impl<V> !RefUnwindSafe for ReactiveCascadingCache<V>
impl<V> !Send for ReactiveCascadingCache<V>
impl<V> !Sync for ReactiveCascadingCache<V>
impl<V> Unpin for ReactiveCascadingCache<V>where
V: Unpin,
impl<V> UnsafeUnpin for ReactiveCascadingCache<V>
impl<V> !UnwindSafe for ReactiveCascadingCache<V>
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