Struct boxcars::ClassNetCache [] [src]

pub struct ClassNetCache {
    pub object_ind: i32,
    pub parent_id: i32,
    pub cache_id: i32,
    pub properties: Vec<CacheProp>,
}

Contains useful information when decoding the network stream, which we aren't

Fields

The index that the object appears in the Replay::objects

The cache id of the parent. The child class inherits all the parent's properties.

The cache id of the object

List of properties that is on the object.

Trait Implementations

impl PartialEq for ClassNetCache
[src]

[src]

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

[src]

This method tests for !=.

impl Debug for ClassNetCache
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ClassNetCache
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for ClassNetCache

impl Sync for ClassNetCache