[][src]Struct yz_basic_block::BasicBlock

pub struct BasicBlock<S, C, T> {
    pub inner: BasicBlockInner<S, C, T>,
    pub is_public: bool,
}

Fields

inner: BasicBlockInner<S, C, T>is_public: bool

Trait Implementations

impl<S: Clone, C: Clone, T: Clone> Clone for BasicBlock<S, C, T>[src]

impl<S: Debug, C: Debug, T: Debug> Debug for BasicBlock<S, C, T>[src]

impl<S: Eq, C: Eq, T: Eq> Eq for BasicBlock<S, C, T>[src]

impl<S, C, T> ForeachTarget for BasicBlock<S, C, T> where
    S: ForeachTarget<JumpTarget = T>,
    C: ForeachTarget<JumpTarget = T>, 
[src]

type JumpTarget = T

impl<S: PartialEq, C: PartialEq, T: PartialEq> PartialEq<BasicBlock<S, C, T>> for BasicBlock<S, C, T>[src]

impl<S, C, T> StructuralEq for BasicBlock<S, C, T>[src]

impl<S, C, T> StructuralPartialEq for BasicBlock<S, C, T>[src]

Auto Trait Implementations

impl<S, C, T> RefUnwindSafe for BasicBlock<S, C, T> where
    C: RefUnwindSafe,
    S: RefUnwindSafe,
    T: RefUnwindSafe

impl<S, C, T> Send for BasicBlock<S, C, T> where
    C: Send,
    S: Send,
    T: Send

impl<S, C, T> Sync for BasicBlock<S, C, T> where
    C: Sync,
    S: Sync,
    T: Sync

impl<S, C, T> Unpin for BasicBlock<S, C, T> where
    C: Unpin,
    S: Unpin,
    T: Unpin

impl<S, C, T> UnwindSafe for BasicBlock<S, C, T> where
    C: UnwindSafe,
    S: UnwindSafe,
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<C, T> ForeachTarget for C where
    T: ForeachTarget,
    &'a C: for<'a> IntoIterator,
    &'a mut C: for<'a> IntoIterator,
    <&'a C as IntoIterator>::Item == &'a T,
    <&'a mut C as IntoIterator>::Item == &'a mut T, 
[src]

type JumpTarget = <T as ForeachTarget>::JumpTarget

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.