Enum ambient_api_core::ecs::ComponentValue
source · pub enum ComponentValue {
Show 32 variants
Empty(()),
Bool(bool),
EntityId(EntityId),
F32(f32),
F64(f64),
Mat4(Mat4),
Quat(Quat),
String(String),
U8(u8),
U16(u16),
U32(u32),
U64(u64),
I8(i8),
I16(i16),
I32(i32),
I64(i64),
Vec2(Vec2),
Vec3(Vec3),
Vec4(Vec4),
Uvec2(UVec2),
Uvec3(UVec3),
Uvec4(UVec4),
Ivec2(IVec2),
Ivec3(IVec3),
Ivec4(IVec4),
Duration(Duration),
ProceduralMeshHandle(ProceduralMeshHandle),
ProceduralTextureHandle(ProceduralTextureHandle),
ProceduralSamplerHandle(ProceduralSamplerHandle),
ProceduralMaterialHandle(ProceduralMaterialHandle),
Vec(ComponentVecValue),
Option(ComponentOptionValue),
}
Expand description
A value that can be stored in a component.
Variants§
Empty(())
Bool(bool)
EntityId(EntityId)
F32(f32)
F64(f64)
Mat4(Mat4)
Quat(Quat)
String(String)
U8(u8)
U16(u16)
U32(u32)
U64(u64)
I8(i8)
I16(i16)
I32(i32)
I64(i64)
Vec2(Vec2)
Vec3(Vec3)
Vec4(Vec4)
Uvec2(UVec2)
Uvec3(UVec3)
Uvec4(UVec4)
Ivec2(IVec2)
Ivec3(IVec3)
Ivec4(IVec4)
Duration(Duration)
ProceduralMeshHandle(ProceduralMeshHandle)
ProceduralTextureHandle(ProceduralTextureHandle)
ProceduralSamplerHandle(ProceduralSamplerHandle)
ProceduralMaterialHandle(ProceduralMaterialHandle)
Vec(ComponentVecValue)
Option(ComponentOptionValue)
Trait Implementations§
source§impl Clone for ComponentValue
impl Clone for ComponentValue
source§fn clone(&self) -> ComponentValue
fn clone(&self) -> ComponentValue
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 ComponentValue
impl Debug for ComponentValue
source§impl<'de> Deserialize<'de> for ComponentValue
impl<'de> Deserialize<'de> for ComponentValue
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
source§impl PartialEq for ComponentValue
impl PartialEq for ComponentValue
source§fn eq(&self, other: &ComponentValue) -> bool
fn eq(&self, other: &ComponentValue) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ComponentValue
impl Serialize for ComponentValue
impl StructuralPartialEq for ComponentValue
Auto Trait Implementations§
impl RefUnwindSafe for ComponentValue
impl Send for ComponentValue
impl Sync for ComponentValue
impl Unpin for ComponentValue
impl UnwindSafe for ComponentValue
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