pub struct NodeIndex<Ix = u32>(/* private fields */);Expand description
Node identifier.
Implementations§
Trait Implementations§
impl<Ix> Copy for NodeIndex<Ix>where
Ix: Copy,
impl<Ix> Eq for NodeIndex<Ix>where
Ix: Eq,
Source§impl From<AnimationChannel> for NodeIndex
impl From<AnimationChannel> for NodeIndex
Source§fn from(image: AnimationChannel) -> Self
fn from(image: AnimationChannel) -> Self
Converts to this type from the input type.
Source§impl From<AnimationSampler> for NodeIndex
impl From<AnimationSampler> for NodeIndex
Source§fn from(image: AnimationSampler) -> Self
fn from(image: AnimationSampler) -> Self
Converts to this type from the input type.
Source§impl From<GltfDocument> for NodeIndex
impl From<GltfDocument> for NodeIndex
Source§fn from(document: GltfDocument) -> Self
fn from(document: GltfDocument) -> Self
Converts to this type from the input type.
Source§impl From<MorphTarget> for NodeIndex
impl From<MorphTarget> for NodeIndex
Source§fn from(primitive: MorphTarget) -> Self
fn from(primitive: MorphTarget) -> Self
Converts to this type from the input type.
Source§impl From<NodeIndex> for OmiPhysicsBody
impl From<NodeIndex> for OmiPhysicsBody
Source§impl From<NodeIndex> for PhysicsShape
impl From<NodeIndex> for PhysicsShape
Source§impl From<NodeIndex> for OmiPhysicsShape
impl From<NodeIndex> for OmiPhysicsShape
Source§impl From<NodeIndex> for AnimationChannel
impl From<NodeIndex> for AnimationChannel
Source§impl From<NodeIndex> for AnimationSampler
impl From<NodeIndex> for AnimationSampler
Source§impl From<NodeIndex> for GltfDocument
impl From<NodeIndex> for GltfDocument
Source§impl From<NodeIndex> for MorphTarget
impl From<NodeIndex> for MorphTarget
Source§impl From<OmiPhysicsBody> for NodeIndex
impl From<OmiPhysicsBody> for NodeIndex
Source§fn from(physics_body: OmiPhysicsBody) -> Self
fn from(physics_body: OmiPhysicsBody) -> Self
Converts to this type from the input type.
Source§impl From<OmiPhysicsShape> for NodeIndex
impl From<OmiPhysicsShape> for NodeIndex
Source§fn from(physics_shape: OmiPhysicsShape) -> Self
fn from(physics_shape: OmiPhysicsShape) -> Self
Converts to this type from the input type.
Source§impl From<PhysicsShape> for NodeIndex
impl From<PhysicsShape> for NodeIndex
Source§fn from(physics_shape: PhysicsShape) -> Self
fn from(physics_shape: PhysicsShape) -> Self
Converts to this type from the input type.
impl<Ix> GraphIndex for NodeIndex<Ix>where
Ix: IndexType,
Source§impl<Ix> Ord for NodeIndex<Ix>where
Ix: Ord,
impl<Ix> Ord for NodeIndex<Ix>where
Ix: Ord,
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
Source§impl<Ix> PartialOrd for NodeIndex<Ix>where
Ix: PartialOrd,
impl<Ix> PartialOrd for NodeIndex<Ix>where
Ix: PartialOrd,
impl<Ix> StructuralPartialEq for NodeIndex<Ix>where
Ix: PartialEq,
Auto Trait Implementations§
impl<Ix> Freeze for NodeIndex<Ix>where
Ix: Freeze,
impl<Ix> RefUnwindSafe for NodeIndex<Ix>where
Ix: RefUnwindSafe,
impl<Ix> Send for NodeIndex<Ix>where
Ix: Send,
impl<Ix> Sync for NodeIndex<Ix>where
Ix: Sync,
impl<Ix> Unpin for NodeIndex<Ix>where
Ix: Unpin,
impl<Ix> UnsafeUnpin for NodeIndex<Ix>where
Ix: UnsafeUnpin,
impl<Ix> UnwindSafe for NodeIndex<Ix>where
Ix: UnwindSafe,
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
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