Enum sacn::error::PackError [] [src]

pub enum PackError<'a> {
    InvalidData(&'a str),
    BufferNotLargeEnough,
}

Errors for packing of sACN network packets.

Variants

Packet contains invalid data.

Supplied buffer is not large enough.

Trait Implementations

impl<'a> Debug for PackError<'a>
[src]

[src]

Formats the value using the given formatter. Read more

impl<'a> Display for PackError<'a>
[src]

[src]

Formats the value using the given formatter. Read more

impl<'a> Error for PackError<'a>
[src]

[src]

A short description of the error. Read more

[src]

The lower-level cause of this error, if any. Read more

Auto Trait Implementations

impl<'a> Send for PackError<'a>

impl<'a> Sync for PackError<'a>