#[non_exhaustive]pub struct NodeInstanceMeasurements {
pub node_index: usize,
pub node_name: String,
pub mesh_index: usize,
pub static_node_world_aabb: Option<Aabb>,
pub static_node_world_aabb_unavailable_reason: Option<StaticNodeAabbUnavailableReason>,
}Expand description
Static base-geometry bounds for one mesh-bearing source node.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.node_index: usizeStable index of the mesh-bearing node in the source format.
node_name: StringNode name for display; identity comes from Self::node_index.
mesh_index: usizeStable source mesh-definition index referenced by this node.
static_node_world_aabb: Option<Aabb>Tight AABB after applying the node’s default/rest world transform to every finite base position. Deformation and runtime placement are excluded.
Present exactly when Self::static_node_world_aabb is unavailable.
Trait Implementations§
Source§impl Clone for NodeInstanceMeasurements
impl Clone for NodeInstanceMeasurements
Source§fn clone(&self) -> NodeInstanceMeasurements
fn clone(&self) -> NodeInstanceMeasurements
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 NodeInstanceMeasurements
impl Debug for NodeInstanceMeasurements
Source§impl<'de> Deserialize<'de> for NodeInstanceMeasurements
impl<'de> Deserialize<'de> for NodeInstanceMeasurements
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for NodeInstanceMeasurements
impl RefUnwindSafe for NodeInstanceMeasurements
impl Send for NodeInstanceMeasurements
impl Sync for NodeInstanceMeasurements
impl Unpin for NodeInstanceMeasurements
impl UnsafeUnpin for NodeInstanceMeasurements
impl UnwindSafe for NodeInstanceMeasurements
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