Struct ctru_sys::DebugEventInfo
source · #[repr(C)]pub struct DebugEventInfo {
pub type_: DebugEventType,
pub thread_id: u32_,
pub flags: u32_,
pub remnants: [u8_; 4],
pub __bindgen_anon_1: DebugEventInfo__bindgen_ty_1,
}
Expand description
Information about a debug event.
Fields§
§type_: DebugEventType
< Type of event. See DebugEventType
thread_id: u32_
< ID of the thread.
flags: u32_
< Flags. Bit0 means that svcContinueDebugEvent needs to be called for this event (except for EXIT PROCESS events, where this flag is disregarded).
remnants: [u8_; 4]
< Always 0.
__bindgen_anon_1: DebugEventInfo__bindgen_ty_1
Trait Implementations§
source§impl Clone for DebugEventInfo
impl Clone for DebugEventInfo
source§fn clone(&self) -> DebugEventInfo
fn clone(&self) -> DebugEventInfo
Returns a copy of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more