pub struct FrameTableBreakpointData<'a> {
pub offset: usize,
pub enable: &'a [u8],
pub disable: &'a [u8],
}Expand description
Data describing how to patch code to enable or disable one breakpoint.
Fields§
§offset: usizeOffset in the code image’s text section.
enable: &'a [u8]Code bytes to patch in to enable the breakpoint.
disable: &'a [u8]Code bytes to patch in to disable the breakpoint.