pub enum SpatialType {
Show 13 variants
Position2D = 1,
Position3D = 2,
Rotation = 3,
Velocity = 4,
Acceleration = 5,
BoundingBox = 6,
Quaternion = 7,
Path = 8,
Transform = 9,
SpatialState = 10,
PositionDelta = 11,
RotationDelta = 12,
SpatialDelta = 13,
}Variants§
Position2D = 1
Position3D = 2
Rotation = 3
Velocity = 4
Acceleration = 5
BoundingBox = 6
Quaternion = 7
Path = 8
Transform = 9
SpatialState = 10
PositionDelta = 11
RotationDelta = 12
SpatialDelta = 13
Trait Implementations§
Source§impl Clone for SpatialType
impl Clone for SpatialType
Source§fn clone(&self) -> SpatialType
fn clone(&self) -> SpatialType
Returns a duplicate 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 SpatialType
impl Debug for SpatialType
Source§impl<'de> Deserialize<'de> for SpatialType
impl<'de> Deserialize<'de> for SpatialType
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 SpatialType
impl PartialEq for SpatialType
Source§impl Serialize for SpatialType
impl Serialize for SpatialType
impl Copy for SpatialType
impl StructuralPartialEq for SpatialType
Auto Trait Implementations§
impl Freeze for SpatialType
impl RefUnwindSafe for SpatialType
impl Send for SpatialType
impl Sync for SpatialType
impl Unpin for SpatialType
impl UnwindSafe for SpatialType
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