struct SpecialJump {
target_block: BlockId,
kind: SpecialJumpKind,
}Fields§
§target_block: BlockIdThe relevant block.
kind: SpecialJumpKindHow to translate a jump to the target block.
Implementations§
Source§impl SpecialJump
impl SpecialJump
fn new(target_block: BlockId, kind: SpecialJumpKind) -> Self
Trait Implementations§
Source§impl Clone for SpecialJump
impl Clone for SpecialJump
Source§fn clone(&self) -> SpecialJump
fn clone(&self) -> SpecialJump
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SpecialJump
Auto Trait Implementations§
impl Freeze for SpecialJump
impl RefUnwindSafe for SpecialJump
impl Send for SpecialJump
impl Sync for SpecialJump
impl Unpin for SpecialJump
impl UnsafeUnpin for SpecialJump
impl UnwindSafe for SpecialJump
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> 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