[][src]Struct artnet_protocol::Poll

pub struct Poll {
    pub version: [u8; 2],
    pub talk_to_me: ArtTalkToMe,
    pub diagnostics_priority: u8,
}

Used to poll the nodes in the network

Fields

version: [u8; 2]

Determines which version the server has. Will be ARTNET_PROTOCOL_VERSION by default

talk_to_me: ArtTalkToMe

Determines how the nodes should respond

diagnostics_priority: u8

Determines the priority of the diagnostics that the nodes should send

Methods

impl Poll[src]

pub fn to_bytes(&self) -> Result<Vec<u8>>[src]

Convert this struct to a byte array.

pub fn from(data: &[u8]) -> Result<Poll>[src]

Convert a byte array to an instance of this struct.

Trait Implementations

impl Default for Poll[src]

impl Debug for Poll[src]

Auto Trait Implementations

impl Sync for Poll

impl Send for Poll

impl Unpin for Poll

impl RefUnwindSafe for Poll

impl UnwindSafe for Poll

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]