Enum natnet_decode::NatNetResponse [] [src]

pub enum NatNetResponse {
    Ping(Sender),
    Response(i32),
    ResponseString(String),
    ModelDef(Vec<DataSet>),
    FrameOfData(FrameOfData),
    MessageString(String),
    UnrecognizedRequest,
}

Enumeration of possible responses from NatNet

Variants

Response to ping request

The ping response contains data about the sender application

Response to command

Response to command in String form

Model definitions

This type contains a list of DataSets that describe data in a FrameOfData

Data about tracked content

Message from the sender application

The sender application did not understand the request

Trait Implementations

impl Clone for NatNetResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for NatNetResponse
[src]

Formats the value using the given formatter.

impl PartialEq for NatNetResponse
[src]

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

This method tests for !=.