fuchsia_wayland_core

Trait FromArgs

Source
pub trait FromArgs: Sized + MessageType {
    // Required method
    fn from_args(op: u16, args: Vec<Arg>) -> Result<Self, Error>;
}
Expand description

Trait to be implemented by any type used as an interface ‘request’.

Required Methods§

Source

fn from_args(op: u16, args: Vec<Arg>) -> Result<Self, Error>

Consumes |args| creates an instance of self.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§