pub struct Edge<'a, C: 'a + BlockContext> {
pub branch: BranchType,
pub back_edge: bool,
pub source: Guard<'a, BasicBlock<C>>,
pub target: Guard<'a, BasicBlock<C>>,
}Fields§
§branch: BranchType§back_edge: bool§source: Guard<'a, BasicBlock<C>>§target: Guard<'a, BasicBlock<C>>Trait Implementations§
Source§impl<'a, C: 'a + BlockContext> CoreArrayProvider for Edge<'a, C>
impl<'a, C: 'a + BlockContext> CoreArrayProvider for Edge<'a, C>
Auto Trait Implementations§
impl<'a, C> Freeze for Edge<'a, C>where
C: Freeze,
impl<'a, C> RefUnwindSafe for Edge<'a, C>where
C: RefUnwindSafe,
impl<'a, C> Send for Edge<'a, C>
impl<'a, C> Sync for Edge<'a, C>
impl<'a, C> Unpin for Edge<'a, C>where
C: Unpin,
impl<'a, C> UnwindSafe for Edge<'a, C>where
C: UnwindSafe,
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> 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