pub struct WhileOperationBuilder<'c, T0, T1, T2, T3> { /* private fields */ }
Expand description
A builder for a while_loop
operation.
Implementations§
source§impl<'c> WhileOperationBuilder<'c, Unset, Unset, Unset, Unset>
impl<'c> WhileOperationBuilder<'c, Unset, Unset, Unset, Unset>
source§impl<'c, T1, T2, T3> WhileOperationBuilder<'c, Unset, T1, T2, T3>
impl<'c, T1, T2, T3> WhileOperationBuilder<'c, Unset, T1, T2, T3>
pub fn output( self, output: &[Type<'c>] ) -> WhileOperationBuilder<'c, Set, T1, T2, T3>
source§impl<'c, T0, T2, T3> WhileOperationBuilder<'c, T0, Unset, T2, T3>
impl<'c, T0, T2, T3> WhileOperationBuilder<'c, T0, Unset, T2, T3>
pub fn inputs( self, inputs: &[Value<'c, '_>] ) -> WhileOperationBuilder<'c, T0, Set, T2, T3>
source§impl<'c, T0, T1, T3> WhileOperationBuilder<'c, T0, T1, Unset, T3>
impl<'c, T0, T1, T3> WhileOperationBuilder<'c, T0, T1, Unset, T3>
pub fn cond( self, cond: Region<'c> ) -> WhileOperationBuilder<'c, T0, T1, Set, T3>
source§impl<'c, T0, T1, T2> WhileOperationBuilder<'c, T0, T1, T2, Unset>
impl<'c, T0, T1, T2> WhileOperationBuilder<'c, T0, T1, T2, Unset>
pub fn body( self, body: Region<'c> ) -> WhileOperationBuilder<'c, T0, T1, T2, Set>
source§impl<'c> WhileOperationBuilder<'c, Set, Set, Set, Set>
impl<'c> WhileOperationBuilder<'c, Set, Set, Set, Set>
pub fn build(self) -> WhileOperation<'c>
Auto Trait Implementations§
impl<'c, T0, T1, T2, T3> RefUnwindSafe for WhileOperationBuilder<'c, T0, T1, T2, T3>
impl<'c, T0, T1, T2, T3> !Send for WhileOperationBuilder<'c, T0, T1, T2, T3>
impl<'c, T0, T1, T2, T3> !Sync for WhileOperationBuilder<'c, T0, T1, T2, T3>
impl<'c, T0, T1, T2, T3> Unpin for WhileOperationBuilder<'c, T0, T1, T2, T3>
impl<'c, T0, T1, T2, T3> UnwindSafe for WhileOperationBuilder<'c, T0, T1, T2, T3>
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