pub enum Event {
Uint {
arg: u32,
},
Int {
arg: i32,
},
Fixed {
arg: Fixed,
},
String {
arg: String,
},
Object {
arg: ObjectId,
},
NewId {
arg: NewId,
},
Array {
arg: Array,
},
Handle {
arg: Handle,
},
Complex {
uint_arg: u32,
int_arg: i32,
handle_arg1: Handle,
object_arg: ObjectId,
handle_arg2: Handle,
string_arg: String,
array_arg: Array,
},
UntypedNewId {
arg_interface_name: String,
arg_interface_version: u32,
arg: NewId,
},
TestIntEnum {
arg: TestEnum,
},
TestUintEnum {
arg: TestEnum,
},
}
Variants§
Uint
Int
Fixed
Fields
§
arg: Fixed
String
Object
Fields
§
arg: ObjectId
NewId
Fields
§
arg: NewId
Array
Fields
§
arg: Array
Handle
Complex
UntypedNewId
TestIntEnum
TestUintEnum
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Event
impl RefUnwindSafe for Event
impl Send for Event
impl Sync for Event
impl Unpin for Event
impl UnwindSafe for Event
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