Enum udi::protocol::event::EventData[][src]

pub enum EventData {
    Error {
        msg: String,
    },
    Signal {
        addr: u64,
        sig: u32,
    },
    Breakpoint {
        addr: u64,
    },
    ThreadCreate {
        tid: u64,
    },
    ThreadDeath,
    ProcessExit {
        code: i32,
    },
    ProcessFork {
        pid: u32,
    },
    ProcessExec {
        path: String,
        argv: Vec<String>,
        envp: Vec<String>,
    },
    SingleStep,
    ProcessCleanup,
}

Variants

Fields of Error

Fields of Signal

Fields of Breakpoint

Fields of ThreadCreate

Fields of ProcessExit

Fields of ProcessFork

Fields of ProcessExec

Trait Implementations

impl Debug for EventData
[src]

Formats the value using the given formatter. Read more

impl PartialEq for EventData
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for EventData

impl Sync for EventData