Enum artnet_protocol::ArtCommand[][src]

pub enum ArtCommand {
    Poll(Poll),
    PollReply(Box<PollReply>),
    DiagData,
    Command,
    Output(Output),
    Nzs,
    Sync,
    Address,
    Input,
    TodRequest,
    TodData,
    TodControl,
    Rdm,
    RdmSub,
    VideoSetup,
    VideoPalette,
    VideoData,
    MacMaster,
    MacSlave,
    FirmwareMaster,
    FirmwareReply,
    FileTnMaster,
    FileFnMaster,
    FileFnReply,
    OpIpProg,
    OpIpProgReply,
    OpMedia,
    OpMediaPatch,
    OpMediaControl,
    OpMediaControlReply,
    OpTimeCode,
    OpTimeSync,
    OpTrigger,
    OpDirectory,
    OpDirectoryReply,
}

The ArtCommand, to be used for ArtNet.

This struct implements an into_buffer and from_buffer function, to be used with UDP connections.

Variants

A poll command, used to discover devices on the network

A reply to the poll command, it contains device status information

[Not implemented] Diagnostics and data logging packet

[Not implemented] Used to send text based parameter commands

An ArtDmx data packet. Used to send actual data to a node in the network

[Not implemented] This is an ArtNzs data packet. It contains non-zero start code (except RDM) DMX512 information for a single Universe

[Not implemented] This is an ArtSync data packet. It is used to force synchronous transfer of ArtDmx packets to a node's output

[Not implemented] This is an ArtAddress packet. It contains remote programming information for a Node.

[Not implemented] This is an ArtInput packet. It contains enable – disable data for DMX inputs

[Not implemented] This is an ArtTodRequest packet. It is used to request a Table of Devices (ToD) for RDM discovery.

[Not implemented] This is an ArtTodData packet. It is used to send a Table of Devices (ToD) for RDM discovery

[Not implemented] This is an ArtTodControl packet. It is used to send RDM discovery control messages.

[Not implemented] This is an ArtRdm packet. It is used to send all non discovery RDM messages

[Not implemented] This is an ArtRdmSub packet. It is used to send compressed, RDM Sub-Device data.

[Not implemented] This is an ArtVideoSetup packet. It contains video screen setup information for nodes that implement the extended video features.

[Not implemented] This is an ArtVideoPalette packet. It contains colour palette setup information for nodes that implement the extended video features.

[Not implemented] This is an ArtVideoData packet. It contains display data for nodes that implement the extended video features.

[Not implemented] This packet is deprecated

[Not implemented] This packet is deprecated

[Not implemented] This is an ArtFirmwareMaster packet. It is used to upload new firmware or firmware extensions to the Node.

[Not implemented] This is an ArtFirmwareReply packet. It is returned by the node to acknowledge receipt of an ArtFirmwareMaster packet or ArtFileTnMaster packet.

[Not implemented] Uploads user file to node.

[Not implemented] Downloads user file from node

[Not implemented] Server to Node acknowledge for download packets

[Not implemented] This is an ArtIpProg packet. It is used to reprogramme the IP address and Mask of the Node

[Not implemented] This is an ArtIpProgReply packet. It is returned by the node to acknowledge receipt of an ArtIpProg packet.

[Not implemented] This is an ArtMedia packet. It is Unicast by a Media Server and acted upon by a Controller

[Not implemented] This is an ArtMediaPatch packet. It is Unicast by a Controller and acted upon by a Media Server

[Not implemented] This is an ArtMediaControl packet. It is Unicast by a Controller and acted upon by a Media Server.

[Not implemented] This is an ArtMediaControlReply packet. It is Unicast by a Media Server and acted upon by a Controller

[Not implemented] This is an ArtTimeCode packet. It is used to transport time code over the network

[Not implemented] Used to synchronise real time date and clock

[Not implemented] Used to send trigger macros

[Not implemented] Requests a node's file list

[Not implemented] Replies to OpDirectory with file list

Methods

impl ArtCommand
[src]

Convert an ArtCommand in a byte buffer, which can be send to an UDP socket.

Convert an a byte buffer to a command.

Trait Implementations

impl Debug for ArtCommand
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for ArtCommand

impl Sync for ArtCommand