Struct boxcars::UpdatedAttribute[][src]

pub struct UpdatedAttribute {
    pub actor_id: ActorId,
    pub stream_id: StreamId,
    pub attribute: Attribute,
}

Notifies that an actor has had one of their properties updated (most likely their rigid body state (location / rotation) has changed)

Fields

The actor that had an attribute updated

The attribute stream id that was decoded

The actual data from the decoded attribute

Trait Implementations

impl Debug for UpdatedAttribute
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdatedAttribute
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpdatedAttribute
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations