pub struct NonLocalControlFlowResult {
pub success: bool,
pub has_return: bool,
pub has_continue: bool,
pub has_break: bool,
pub num_inputs: usize,
pub output_code: String,
}Fields§
§success: bool§has_return: bool§has_continue: bool§has_break: bool§num_inputs: usize§output_code: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for NonLocalControlFlowResult
impl RefUnwindSafe for NonLocalControlFlowResult
impl Send for NonLocalControlFlowResult
impl Sync for NonLocalControlFlowResult
impl Unpin for NonLocalControlFlowResult
impl UnwindSafe for NonLocalControlFlowResult
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