#[repr(i32)]pub enum LoopOutput {
kLAST_VALUE = 0,
kCONCATENATE = 1,
kREVERSE = 2,
}Expand description
! ! \enum LoopOutput ! ! \brief Enum that describes kinds of loop outputs. !
Variants§
kLAST_VALUE = 0
! Output value is value of tensor for last iteration.
kCONCATENATE = 1
! Output value is concatenation of values of tensor for each iteration, in forward order.
kREVERSE = 2
! Output value is concatenation of values of tensor for each iteration, in reverse order.
Trait Implementations§
Source§impl Clone for LoopOutput
impl Clone for LoopOutput
Source§fn clone(&self) -> LoopOutput
fn clone(&self) -> LoopOutput
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ExternType for LoopOutput
impl ExternType for LoopOutput
Source§impl Hash for LoopOutput
impl Hash for LoopOutput
Source§impl PartialEq for LoopOutput
impl PartialEq for LoopOutput
impl Eq for LoopOutput
impl StructuralPartialEq for LoopOutput
impl UniquePtrTarget for LoopOutput
impl VectorElement for LoopOutput
impl WeakPtrTarget for LoopOutput
Auto Trait Implementations§
impl Freeze for LoopOutput
impl RefUnwindSafe for LoopOutput
impl Send for LoopOutput
impl Sync for LoopOutput
impl Unpin for LoopOutput
impl UnwindSafe for LoopOutput
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