pub enum SpatialNodeUidKind {
Root,
InternalScrollFrame,
InternalReferenceFrame,
External {
key: SpatialTreeItemKey,
},
}
Expand description
The kind of a spatial node uid. These are required because we currently create external nodes during DL building, but the internal nodes aren’t created until scene building. TODO(gw): The internal scroll and reference frames are not used in any important way
Variants§
Root
The root node of the entire spatial tree
InternalScrollFrame
Internal scroll frame created during scene building for each iframe
InternalReferenceFrame
Internal reference frame created during scene building for each iframe
External
A normal spatial node uid, defined by a caller provided unique key
Fields
§
key: SpatialTreeItemKey
Trait Implementations§
source§impl Clone for SpatialNodeUidKind
impl Clone for SpatialNodeUidKind
source§fn clone(&self) -> SpatialNodeUidKind
fn clone(&self) -> SpatialNodeUidKind
Returns a copy of the value. Read more
1.0.0 · 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 SpatialNodeUidKind
impl Debug for SpatialNodeUidKind
source§impl Hash for SpatialNodeUidKind
impl Hash for SpatialNodeUidKind
source§impl PartialEq for SpatialNodeUidKind
impl PartialEq for SpatialNodeUidKind
source§fn eq(&self, other: &SpatialNodeUidKind) -> bool
fn eq(&self, other: &SpatialNodeUidKind) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for SpatialNodeUidKind
impl Serialize for SpatialNodeUidKind
impl Copy for SpatialNodeUidKind
impl Eq for SpatialNodeUidKind
impl StructuralPartialEq for SpatialNodeUidKind
Auto Trait Implementations§
impl Freeze for SpatialNodeUidKind
impl RefUnwindSafe for SpatialNodeUidKind
impl Send for SpatialNodeUidKind
impl Sync for SpatialNodeUidKind
impl Unpin for SpatialNodeUidKind
impl UnwindSafe for SpatialNodeUidKind
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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more