@@ -133,18 +133,18 @@ impl Target for HyperlightSandboxTarget {
133133 type Arch = GdbTargetArch ;
134134 type Error = GdbTargetError ;
135135
136- fn support_breakpoints ( & mut self ) -> Option < BreakpointsOps < Self > > {
136+ fn support_breakpoints ( & mut self ) -> Option < BreakpointsOps < ' _ , Self > > {
137137 Some ( self )
138138 }
139139
140140 #[ inline( always) ]
141- fn base_ops ( & mut self ) -> BaseOps < Self :: Arch , Self :: Error > {
141+ fn base_ops ( & mut self ) -> BaseOps < ' _ , Self :: Arch , Self :: Error > {
142142 BaseOps :: SingleThread ( self )
143143 }
144144
145145 fn support_section_offsets (
146146 & mut self ,
147- ) -> Option < gdbstub:: target:: ext:: section_offsets:: SectionOffsetsOps < Self > > {
147+ ) -> Option < gdbstub:: target:: ext:: section_offsets:: SectionOffsetsOps < ' _ , Self > > {
148148 Some ( self )
149149 }
150150}
@@ -288,7 +288,7 @@ impl SingleThreadBase for HyperlightSandboxTarget {
288288 }
289289 }
290290
291- fn support_resume ( & mut self ) -> Option < SingleThreadResumeOps < Self > > {
291+ fn support_resume ( & mut self ) -> Option < SingleThreadResumeOps < ' _ , Self > > {
292292 Some ( self )
293293 }
294294}
@@ -315,7 +315,7 @@ impl SectionOffsets for HyperlightSandboxTarget {
315315}
316316
317317impl Breakpoints for HyperlightSandboxTarget {
318- fn support_hw_breakpoint ( & mut self ) -> Option < HwBreakpointOps < Self > > {
318+ fn support_hw_breakpoint ( & mut self ) -> Option < HwBreakpointOps < ' _ , Self > > {
319319 Some ( self )
320320 }
321321 fn support_sw_breakpoint ( & mut self ) -> Option < SwBreakpointOps < ' _ , Self > > {
@@ -438,7 +438,7 @@ impl SingleThreadResume for HyperlightSandboxTarget {
438438 log:: debug!( "Resume" ) ;
439439 self . resume_vcpu ( )
440440 }
441- fn support_single_step ( & mut self ) -> Option < SingleThreadSingleStepOps < Self > > {
441+ fn support_single_step ( & mut self ) -> Option < SingleThreadSingleStepOps < ' _ , Self > > {
442442 Some ( self )
443443 }
444444}
0 commit comments