pub struct RestartFrameBuilder { /* private fields */ }Expand description
Builder for RestartFrame.
Implementations§
Source§impl RestartFrameBuilder
impl RestartFrameBuilder
Sourcepub fn call_frame_id<VALUE: Into<CallFrameId>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn call_frame_id<VALUE: Into<CallFrameId>>( &mut self, value: VALUE, ) -> &mut Self
Call frame identifier to evaluate on.
Sourcepub fn mode<VALUE: Into<RestartFrameModeOption>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn mode<VALUE: Into<RestartFrameModeOption>>( &mut self, value: VALUE, ) -> &mut Self
The mode parameter must be present and set to ‘StepInto’, otherwise
restartFrame will error out.
Sourcepub fn build(&self) -> Result<RestartFrame, RestartFrameBuilderError>
pub fn build(&self) -> Result<RestartFrame, RestartFrameBuilderError>
Trait Implementations§
Source§impl Clone for RestartFrameBuilder
impl Clone for RestartFrameBuilder
Source§fn clone(&self) -> RestartFrameBuilder
fn clone(&self) -> RestartFrameBuilder
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 moreAuto Trait Implementations§
impl Freeze for RestartFrameBuilder
impl RefUnwindSafe for RestartFrameBuilder
impl Send for RestartFrameBuilder
impl Sync for RestartFrameBuilder
impl Unpin for RestartFrameBuilder
impl UnsafeUnpin for RestartFrameBuilder
impl UnwindSafe for RestartFrameBuilder
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