Skip to main content

IMessageEventArgs

Trait IMessageEventArgs 

Source
pub trait IMessageEventArgs: IObject {
    // Provided methods
    fn player_id(self) -> i32 { ... }
    fn set_player_id(self, value: i32) { ... }
    fn data(self) -> Array<u8> { ... }
    fn set_data(self, value: Array<u8>) { ... }
}

Provided Methods§

Source

fn player_id(self) -> i32

Source

fn set_player_id(self, value: i32)

Source

fn data(self) -> Array<u8>

Source

fn set_data(self, value: Array<u8>)

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§