pub struct NodeSnapshot {Show 15 fields
pub id: InspectNodeId,
pub parent: Option<InspectNodeId>,
pub depth: usize,
pub key: Option<String>,
pub kind: String,
pub summary: Option<String>,
pub bounds: Rect,
pub clip: Option<Rect>,
pub z_index: i32,
pub portal: Option<PortalSnapshot>,
pub visible: bool,
pub painted: bool,
pub interactive: bool,
pub child_count: usize,
pub properties: Vec<PropertySnapshot>,
}Fields§
§id: InspectNodeId§parent: Option<InspectNodeId>§depth: usize§key: Option<String>§kind: String§summary: Option<String>§bounds: Rect§clip: Option<Rect>§z_index: i32§portal: Option<PortalSnapshot>§visible: bool§painted: bool§interactive: bool§child_count: usize§properties: Vec<PropertySnapshot>Trait Implementations§
Source§impl Clone for NodeSnapshot
impl Clone for NodeSnapshot
Source§fn clone(&self) -> NodeSnapshot
fn clone(&self) -> NodeSnapshot
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 moreSource§impl Debug for NodeSnapshot
impl Debug for NodeSnapshot
Source§impl PartialEq for NodeSnapshot
impl PartialEq for NodeSnapshot
impl StructuralPartialEq for NodeSnapshot
Auto Trait Implementations§
impl Freeze for NodeSnapshot
impl RefUnwindSafe for NodeSnapshot
impl Send for NodeSnapshot
impl Sync for NodeSnapshot
impl Unpin for NodeSnapshot
impl UnsafeUnpin for NodeSnapshot
impl UnwindSafe for NodeSnapshot
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