#[repr(C)]pub struct RpcAppSystemEventData {
pub type_: RpcAppSystemEventDataType,
pub __bindgen_anon_1: RpcAppSystemEventData__bindgen_ty_1,
}
Expand description
Event data structure, containing the type and associated data.
All below fields except for type are valid only if the respective type is set.
Fields§
§type_: RpcAppSystemEventDataType
< Type of the data. The meaning of other fields depends on this one.
__bindgen_anon_1: RpcAppSystemEventData__bindgen_ty_1
Trait Implementations§
Source§impl Clone for RpcAppSystemEventData
impl Clone for RpcAppSystemEventData
Source§fn clone(&self) -> RpcAppSystemEventData
fn clone(&self) -> RpcAppSystemEventData
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 moreimpl Copy for RpcAppSystemEventData
Auto Trait Implementations§
impl Freeze for RpcAppSystemEventData
impl RefUnwindSafe for RpcAppSystemEventData
impl !Send for RpcAppSystemEventData
impl !Sync for RpcAppSystemEventData
impl Unpin for RpcAppSystemEventData
impl UnwindSafe for RpcAppSystemEventData
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