pub struct NodeGraphDocumentSnapshot<'a> {
pub graph: &'a Graph,
pub graph_revision: u64,
pub view_state: &'a NodeGraphViewState,
pub editor_config: &'a NodeGraphEditorConfig,
}Expand description
Atomic document replacement snapshot.
Fields§
§graph: &'a Graph§graph_revision: u64§view_state: &'a NodeGraphViewState§editor_config: &'a NodeGraphEditorConfigTrait Implementations§
Source§impl<'a> Clone for NodeGraphDocumentSnapshot<'a>
impl<'a> Clone for NodeGraphDocumentSnapshot<'a>
Source§fn clone(&self) -> NodeGraphDocumentSnapshot<'a>
fn clone(&self) -> NodeGraphDocumentSnapshot<'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 NodeGraphDocumentSnapshot<'a>
Auto Trait Implementations§
impl<'a> Freeze for NodeGraphDocumentSnapshot<'a>
impl<'a> RefUnwindSafe for NodeGraphDocumentSnapshot<'a>
impl<'a> Send for NodeGraphDocumentSnapshot<'a>
impl<'a> Sync for NodeGraphDocumentSnapshot<'a>
impl<'a> Unpin for NodeGraphDocumentSnapshot<'a>
impl<'a> UnsafeUnpin for NodeGraphDocumentSnapshot<'a>
impl<'a> UnwindSafe for NodeGraphDocumentSnapshot<'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