pub struct NodeGraphStoreSnapshot<'a> {
pub graph: &'a Graph,
pub graph_revision: u64,
pub layout_facts_revision: u64,
pub view_state: &'a NodeGraphViewState,
pub interaction: &'a NodeGraphInteractionConfig,
pub runtime_tuning: &'a NodeGraphRuntimeTuning,
pub history: &'a GraphHistory,
}Expand description
Immutable snapshot of store state for selector subscriptions.
Fields§
§graph: &'a Graph§graph_revision: u64§layout_facts_revision: u64§view_state: &'a NodeGraphViewState§interaction: &'a NodeGraphInteractionConfig§runtime_tuning: &'a NodeGraphRuntimeTuning§history: &'a GraphHistoryTrait Implementations§
Source§impl<'a> Clone for NodeGraphStoreSnapshot<'a>
impl<'a> Clone for NodeGraphStoreSnapshot<'a>
Source§fn clone(&self) -> NodeGraphStoreSnapshot<'a>
fn clone(&self) -> NodeGraphStoreSnapshot<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<'a> Copy for NodeGraphStoreSnapshot<'a>
Auto Trait Implementations§
impl<'a> Freeze for NodeGraphStoreSnapshot<'a>
impl<'a> RefUnwindSafe for NodeGraphStoreSnapshot<'a>
impl<'a> Send for NodeGraphStoreSnapshot<'a>
impl<'a> Sync for NodeGraphStoreSnapshot<'a>
impl<'a> Unpin for NodeGraphStoreSnapshot<'a>
impl<'a> UnsafeUnpin for NodeGraphStoreSnapshot<'a>
impl<'a> UnwindSafe for NodeGraphStoreSnapshot<'a>
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