pub enum ArgumentType {
Int,
Uint,
Fixed,
Str(AllowNull),
Object(AllowNull),
NewId,
Array,
Fd,
}Expand description
Enum of possible argument types as recognized by the wire
Variants§
Int
An integer argument. Represented by a i32.
Uint
An unsigned integer argument. Represented by a u32.
Fixed
A signed fixed point number with 1/256 precision
Str(AllowNull)
A string. This is represented as a CString in a message.
Object(AllowNull)
Id of a wayland object
NewId
Id of a newly created wayland object
Array
Vec<u8>
Fd
A file descriptor argument. Represented by a RawFd.
Implementations§
Trait Implementations§
Source§impl Clone for ArgumentType
impl Clone for ArgumentType
Source§fn clone(&self) -> ArgumentType
fn clone(&self) -> ArgumentType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ArgumentType
impl Debug for ArgumentType
Source§impl PartialEq for ArgumentType
impl PartialEq for ArgumentType
impl Copy for ArgumentType
impl Eq for ArgumentType
impl StructuralPartialEq for ArgumentType
Auto Trait Implementations§
impl Freeze for ArgumentType
impl RefUnwindSafe for ArgumentType
impl Send for ArgumentType
impl Sync for ArgumentType
impl Unpin for ArgumentType
impl UnsafeUnpin for ArgumentType
impl UnwindSafe for ArgumentType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more