pub struct NodeGraphRenderingInteraction {
pub spatial_index: NodeGraphSpatialIndexTuning,
pub only_render_visible_elements: bool,
pub paint_cache_prune: NodeGraphPaintCachePruneTuning,
pub elevate_nodes_on_select: bool,
pub elevate_edges_on_select: bool,
}Expand description
Rendering and cache tuning resolved for runtime use.
spatial_index selects the optional cached spatial query backend when enabled; renderer-facing
reads otherwise keep the deterministic linear path.
Fields§
§spatial_index: NodeGraphSpatialIndexTuning§only_render_visible_elements: bool§paint_cache_prune: NodeGraphPaintCachePruneTuning§elevate_nodes_on_select: bool§elevate_edges_on_select: boolTrait Implementations§
Source§impl Clone for NodeGraphRenderingInteraction
impl Clone for NodeGraphRenderingInteraction
Source§fn clone(&self) -> NodeGraphRenderingInteraction
fn clone(&self) -> NodeGraphRenderingInteraction
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 Copy for NodeGraphRenderingInteraction
Source§impl PartialEq for NodeGraphRenderingInteraction
impl PartialEq for NodeGraphRenderingInteraction
Source§fn eq(&self, other: &NodeGraphRenderingInteraction) -> bool
fn eq(&self, other: &NodeGraphRenderingInteraction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NodeGraphRenderingInteraction
Auto Trait Implementations§
impl Freeze for NodeGraphRenderingInteraction
impl RefUnwindSafe for NodeGraphRenderingInteraction
impl Send for NodeGraphRenderingInteraction
impl Sync for NodeGraphRenderingInteraction
impl Unpin for NodeGraphRenderingInteraction
impl UnsafeUnpin for NodeGraphRenderingInteraction
impl UnwindSafe for NodeGraphRenderingInteraction
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