pub struct DreamletFrame {
pub actor_id: EntityId,
pub tick: u64,
pub active_count: u32,
pub superposed_count: u32,
pub cluster_center_ws: Vec3,
pub cluster_velocity_ws: Vec3,
pub shell_compression: f32,
pub particle_density: f32,
pub orbit_bias: f32,
pub trail_bias: f32,
}Fields§
§actor_id: EntityId§tick: u64§active_count: u32§superposed_count: u32§cluster_center_ws: Vec3§cluster_velocity_ws: Vec3§shell_compression: f32§particle_density: f32§orbit_bias: f32§trail_bias: f32Trait Implementations§
Source§impl Clone for DreamletFrame
impl Clone for DreamletFrame
Source§fn clone(&self) -> DreamletFrame
fn clone(&self) -> DreamletFrame
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 DreamletFrame
impl Debug for DreamletFrame
Source§impl<'de> Deserialize<'de> for DreamletFrame
impl<'de> Deserialize<'de> for DreamletFrame
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 DreamletFrame
impl RefUnwindSafe for DreamletFrame
impl Send for DreamletFrame
impl Sync for DreamletFrame
impl Unpin for DreamletFrame
impl UnsafeUnpin for DreamletFrame
impl UnwindSafe for DreamletFrame
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