Enum wayland_commons::wire::ArgumentType[][src]

pub enum ArgumentType {
    Int,
    Uint,
    Fixed,
    Str,
    Object,
    NewId,
    Array,
    Fd,
}

Enum of possible argument types as recognized by the wire

Variants

i32

u32

fixed point, 1/256 precision

CString

id of a wayland object

id of a newly created wayland object

Vec

RawFd

Trait Implementations

impl Copy for ArgumentType
[src]

impl Clone for ArgumentType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ArgumentType
[src]

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

This method tests for !=.

impl Debug for ArgumentType
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations