pub(super) struct BorrowedMutFields<'outer_borrow, 'this1, 'this0>where
'static: 'this0 + 'this1,
'this1: 'this0,{
pub(super) execution_engine: &'outer_borrow mut ExecutionEngine<'this0>,
pub(super) context: &'this1 Context,
}Expand description
A struct for holding mutable references to all tail fields in an instance of LlvmBundle.
Fields§
§execution_engine: &'outer_borrow mut ExecutionEngine<'this0>§context: &'this1 ContextAuto Trait Implementations§
impl<'outer_borrow, 'this1, 'this0> Freeze for BorrowedMutFields<'outer_borrow, 'this1, 'this0>
impl<'outer_borrow, 'this1, 'this0> RefUnwindSafe for BorrowedMutFields<'outer_borrow, 'this1, 'this0>
impl<'outer_borrow, 'this1, 'this0> !Send for BorrowedMutFields<'outer_borrow, 'this1, 'this0>
impl<'outer_borrow, 'this1, 'this0> !Sync for BorrowedMutFields<'outer_borrow, 'this1, 'this0>
impl<'outer_borrow, 'this1, 'this0> Unpin for BorrowedMutFields<'outer_borrow, 'this1, 'this0>
impl<'outer_borrow, 'this1, 'this0> UnsafeUnpin for BorrowedMutFields<'outer_borrow, 'this1, 'this0>
impl<'outer_borrow, 'this1, 'this0> !UnwindSafe for BorrowedMutFields<'outer_borrow, 'this1, 'this0>
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more