[−][src]Trait wayland_commons::MessageGroup
A group of messages
This represents a group of message that can be serialized on the protocol wire. Typically the set of events or requests of a single interface.
Implementations of this trait are supposed to be
generated using the wayland-scanner crate.
Associated Types
type Map[src]
The wrapper type for ObjectMap allowing the mapping of Object and NewId arguments to the object map during parsing.
Associated Constants
pub const MESSAGES: &'static [MessageDesc][src]
Wire representation of this MessageGroup
Required methods
pub fn opcode(&self) -> u16[src]
The opcode of this message
pub fn is_destructor(&self) -> bool[src]
Whether this message is a destructor
If it is, once send or receive the associated object cannot be used any more.
pub fn since(&self) -> u32[src]
The minimal object version for which this message exists
pub fn child<Meta: ObjectMetadata>(
opcode: u16,
version: u32,
meta: &Meta
) -> Option<Object<Meta>>[src]
opcode: u16,
version: u32,
meta: &Meta
) -> Option<Object<Meta>>
Retrieve the child Object associated with this message if any
pub fn from_raw(msg: Message, map: &mut Self::Map) -> Result<Self, ()>[src]
Construct a message from its raw representation
pub fn into_raw(self, send_id: u32) -> Message[src]
Turn this message into its raw representation
pub unsafe fn from_raw_c(
obj: *mut c_void,
opcode: u32,
args: *const wl_argument
) -> Result<Self, ()>[src]
obj: *mut c_void,
opcode: u32,
args: *const wl_argument
) -> Result<Self, ()>
Construct a message of this group from its C representation
Safety
The pointers provided to this function must all be valid pointers from
libwayland-client
pub fn as_raw_c_in<F, T>(self, f: F) -> T where
F: FnOnce(u32, &mut [wl_argument]) -> T, [src]
F: FnOnce(u32, &mut [wl_argument]) -> T,
Build a C representation of this message
It can only be accessed from the provided closure, and this consumes the message.
Implementors
impl MessageGroup for NoMessage[src]
pub const MESSAGES: &'static [MessageDesc][src]
type Map = ()
pub fn is_destructor(&self) -> bool[src]
pub fn opcode(&self) -> u16[src]
pub fn since(&self) -> u32[src]
pub fn child<M: ObjectMetadata>(_: u16, _: u32, _: &M) -> Option<Object<M>>[src]
pub fn from_raw(_: Message, _: &mut ()) -> Result<Self, ()>[src]
pub fn into_raw(self, _: u32) -> Message[src]
pub unsafe fn from_raw_c(
_obj: *mut c_void,
_opcode: u32,
_args: *const wl_argument
) -> Result<Self, ()>[src]
_obj: *mut c_void,
_opcode: u32,
_args: *const wl_argument
) -> Result<Self, ()>
pub fn as_raw_c_in<F, T>(self, _f: F) -> T where
F: FnOnce(u32, &mut [wl_argument]) -> T, [src]
F: FnOnce(u32, &mut [wl_argument]) -> T,