Enum cubecl_core::ir::Branch
source · pub enum Branch {
If(If),
IfElse(IfElse),
RangeLoop(RangeLoop),
Loop(Loop),
Return,
Break,
}
Expand description
All branching types.
Variants§
If(If)
An if statement.
IfElse(IfElse)
An if else statement.
RangeLoop(RangeLoop)
A range loop.
Loop(Loop)
A loop.
Return
A return statement.
Break
A break statement.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Branch
impl<'de> Deserialize<'de> for Branch
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Branch
Auto Trait Implementations§
impl Freeze for Branch
impl RefUnwindSafe for Branch
impl Send for Branch
impl Sync for Branch
impl Unpin for Branch
impl UnwindSafe for Branch
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,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)