Struct melior::ir::operation::Operation

source ·
pub struct Operation<'c> { /* private fields */ }
Expand description

An operation.

Implementations§

source§

impl<'c> Operation<'c>

source

pub fn context(&self) -> ContextRef<'c>

Returns a context.

source

pub fn name(&self) -> Identifier<'c>

Returns a name.

source

pub fn block(&self) -> Option<BlockRef<'c, '_>>

Returns a block.

source

pub fn operand_count(&self) -> usize

Returns the number of operands.

source

pub fn operand(&self, index: usize) -> Result<Value<'c, '_>, Error>

Returns the operand at a position.

source

pub fn operands(&self) -> impl Iterator<Item = Value<'c, '_>>

Returns all operands.

source

pub fn result_count(&self) -> usize

Returns the number of results.

source

pub fn result(&self, index: usize) -> Result<OperationResult<'c, '_>, Error>

Returns a result at a position.

source

pub fn results(&self) -> impl Iterator<Item = OperationResult<'c, '_>>

Returns all results.

source

pub fn region_count(&self) -> usize

Returns the number of regions.

source

pub fn region(&self, index: usize) -> Result<RegionRef<'c, '_>, Error>

Returns a region at a position.

source

pub fn regions(&self) -> impl Iterator<Item = RegionRef<'c, '_>>

Returns all regions.

source

pub fn successor_count(&self) -> usize

Returns the number of successors.

source

pub fn successor(&self, index: usize) -> Result<BlockRef<'c, '_>, Error>

Returns a successor at a position.

source

pub fn successors(&self) -> impl Iterator<Item = BlockRef<'c, '_>>

Returns all successors.

source

pub fn attribute_count(&self) -> usize

Returns the number of attributes.

source

pub fn attribute_at( &self, index: usize ) -> Result<(Identifier<'c>, Attribute<'c>), Error>

Returns a attribute at a position.

source

pub fn attributes( &self ) -> impl Iterator<Item = (Identifier<'c>, Attribute<'c>)> + '_

Returns all attributes.

source

pub fn attribute(&self, name: &str) -> Result<Attribute<'c>, Error>

Returns a attribute with the given name.

source

pub fn has_attribute(&self, name: &str) -> bool

Checks if the operation has a attribute with the given name.

source

pub fn set_attribute(&mut self, name: &str, attribute: Attribute<'c>)

Sets the attribute with the given name to the given attribute.

source

pub fn remove_attribute(&mut self, name: &str) -> Result<(), Error>

Removes the attribute with the given name.

source

pub fn next_in_block(&self) -> Option<OperationRef<'c, '_>>

Returns a reference to the next operation in the same block.

source

pub fn next_in_block_mut(&self) -> Option<OperationRefMut<'c, '_>>

Returns a mutable reference to the next operation in the same block.

source

pub fn previous_in_block(&self) -> Option<OperationRef<'c, '_>>

Returns a reference to the next operation in the same block.

source

pub fn parent_operation(&self) -> Option<OperationRef<'c, '_>>

Returns a reference to a parent operation.

source

pub fn remove_from_parent(&mut self)

Removes itself from a parent block.

source

pub fn verify(&self) -> bool

Verifies an operation.

source

pub fn dump(&self)

Dumps an operation.

source

pub fn to_string_with_flags( &self, flags: OperationPrintingFlags ) -> Result<String, Error>

Prints an operation with flags.

source

pub unsafe fn from_raw(raw: MlirOperation) -> Self

Creates an operation from a raw object.

§Safety

A raw object must be valid.

source

pub unsafe fn from_option_raw(raw: MlirOperation) -> Option<Self>

Creates an optional operation from a raw object.

§Safety

A raw object must be valid.

source

pub fn into_raw(self) -> MlirOperation

Converts an operation into a raw object.

Trait Implementations§

source§

impl<'c> Clone for Operation<'c>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'c> Debug for Operation<'c>

source§

fn fmt(&self, formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'c> Display for Operation<'c>

source§

fn fmt(&self, formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'c> Drop for Operation<'c>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl<'c> From<AShrOperation<'c>> for Operation<'c>

source§

fn from(operation: AShrOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AbsFOperation<'c>> for Operation<'c>

source§

fn from(operation: AbsFOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AbsIOperation<'c>> for Operation<'c>

source§

fn from(operation: AbsIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AbsOperation<'c>> for Operation<'c>

source§

fn from(operation: AbsOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AbsOperation<'c>> for Operation<'c>

source§

fn from(operation: AbsOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AddFOperation<'c>> for Operation<'c>

source§

fn from(operation: AddFOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AddIOperation<'c>> for Operation<'c>

source§

fn from(operation: AddIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AddOperation<'c>> for Operation<'c>

source§

fn from(operation: AddOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AddOperation<'c>> for Operation<'c>

source§

fn from(operation: AddOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AddOperation<'c>> for Operation<'c>

source§

fn from(operation: AddOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AddOperation<'c>> for Operation<'c>

source§

fn from(operation: AddOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AddToGroupOperation<'c>> for Operation<'c>

source§

fn from(operation: AddToGroupOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AddUIExtendedOperation<'c>> for Operation<'c>

source§

fn from(operation: AddUIExtendedOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AddrSpaceCastOperation<'c>> for Operation<'c>

source§

fn from(operation: AddrSpaceCastOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AddressOfOperation<'c>> for Operation<'c>

source§

fn from(operation: AddressOfOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AffineApplyOperation<'c>> for Operation<'c>

source§

fn from(operation: AffineApplyOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AffineDelinearizeIndexOperation<'c>> for Operation<'c>

source§

fn from(operation: AffineDelinearizeIndexOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AffineForOperation<'c>> for Operation<'c>

source§

fn from(operation: AffineForOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AffineIfOperation<'c>> for Operation<'c>

source§

fn from(operation: AffineIfOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AffineLoadOperation<'c>> for Operation<'c>

source§

fn from(operation: AffineLoadOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AffineMaxOperation<'c>> for Operation<'c>

source§

fn from(operation: AffineMaxOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AffineMinOperation<'c>> for Operation<'c>

source§

fn from(operation: AffineMinOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AffineParallelOperation<'c>> for Operation<'c>

source§

fn from(operation: AffineParallelOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AffinePrefetchOperation<'c>> for Operation<'c>

source§

fn from(operation: AffinePrefetchOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AffineStoreOperation<'c>> for Operation<'c>

source§

fn from(operation: AffineStoreOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AffineVectorLoadOperation<'c>> for Operation<'c>

source§

fn from(operation: AffineVectorLoadOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AffineVectorStoreOperation<'c>> for Operation<'c>

source§

fn from(operation: AffineVectorStoreOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AffineYieldOperation<'c>> for Operation<'c>

source§

fn from(operation: AffineYieldOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AllReduceOperation<'c>> for Operation<'c>

source§

fn from(operation: AllReduceOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AllocOperation<'c>> for Operation<'c>

source§

fn from(operation: AllocOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AllocOperation<'c>> for Operation<'c>

source§

fn from(operation: AllocOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AllocTensorOperation<'c>> for Operation<'c>

source§

fn from(operation: AllocTensorOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AllocaOperation<'c>> for Operation<'c>

source§

fn from(operation: AllocaOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AllocaOperation<'c>> for Operation<'c>

source§

fn from(operation: AllocaOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AllocaScopeOperation<'c>> for Operation<'c>

source§

fn from(operation: AllocaScopeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AllocaScopeReturnOperation<'c>> for Operation<'c>

source§

fn from(operation: AllocaScopeReturnOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AlternativesOperation<'c>> for Operation<'c>

source§

fn from(operation: AlternativesOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AndIOperation<'c>> for Operation<'c>

source§

fn from(operation: AndIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AndOperation<'c>> for Operation<'c>

source§

fn from(operation: AndOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AndOperation<'c>> for Operation<'c>

source§

fn from(operation: AndOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AnnotateOperation<'c>> for Operation<'c>

source§

fn from(operation: AnnotateOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AnnotationOperation<'c>> for Operation<'c>

source§

fn from(operation: AnnotationOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AnyOperation<'c>> for Operation<'c>

source§

fn from(operation: AnyOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ApplyCanonicalizationPatternsOperation<'c>> for Operation<'c>

source§

fn from(operation: ApplyCanonicalizationPatternsOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ApplyCommonSubexpressionEliminationOperation<'c>> for Operation<'c>

source§

fn from(operation: ApplyCommonSubexpressionEliminationOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ApplyConstraintOperation<'c>> for Operation<'c>

source§

fn from(operation: ApplyConstraintOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ApplyDeadCodeEliminationOperation<'c>> for Operation<'c>

source§

fn from(operation: ApplyDeadCodeEliminationOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ApplyLoopInvariantCodeMotionOperation<'c>> for Operation<'c>

source§

fn from(operation: ApplyLoopInvariantCodeMotionOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ApplyNativeConstraintOperation<'c>> for Operation<'c>

source§

fn from(operation: ApplyNativeConstraintOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ApplyNativeRewriteOperation<'c>> for Operation<'c>

source§

fn from(operation: ApplyNativeRewriteOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ApplyPatternsOperation<'c>> for Operation<'c>

source§

fn from(operation: ApplyPatternsOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ApplyRegisteredPassOperation<'c>> for Operation<'c>

source§

fn from(operation: ApplyRegisteredPassOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ApplyRewriteOperation<'c>> for Operation<'c>

source§

fn from(operation: ApplyRewriteOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ApplyScaleOperation<'c>> for Operation<'c>

source§

fn from(operation: ApplyScaleOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AreEqualOperation<'c>> for Operation<'c>

source§

fn from(operation: AreEqualOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ArgMaxOperation<'c>> for Operation<'c>

source§

fn from(operation: ArgMaxOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ArithmeticRightShiftOperation<'c>> for Operation<'c>

source§

fn from(operation: ArithmeticRightShiftOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AssertOperation<'c>> for Operation<'c>

source§

fn from(operation: AssertOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AssumeAlignmentOperation<'c>> for Operation<'c>

source§

fn from(operation: AssumeAlignmentOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AssumeOperation<'c>> for Operation<'c>

source§

fn from(operation: AssumeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AssumingAllOperation<'c>> for Operation<'c>

source§

fn from(operation: AssumingAllOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AssumingOperation<'c>> for Operation<'c>

source§

fn from(operation: AssumingOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AssumingYieldOperation<'c>> for Operation<'c>

source§

fn from(operation: AssumingYieldOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<Atan2Operation<'c>> for Operation<'c>

source§

fn from(operation: Atan2Operation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AtanOperation<'c>> for Operation<'c>

source§

fn from(operation: AtanOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AtomicCmpXchgOperation<'c>> for Operation<'c>

source§

fn from(operation: AtomicCmpXchgOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AtomicRMWOperation<'c>> for Operation<'c>

source§

fn from(operation: AtomicRMWOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AtomicRMWOperation<'c>> for Operation<'c>

source§

fn from(operation: AtomicRMWOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AtomicYieldOperation<'c>> for Operation<'c>

source§

fn from(operation: AtomicYieldOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AttributeOperation<'c>> for Operation<'c>

source§

fn from(operation: AttributeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AvgPool2dOperation<'c>> for Operation<'c>

source§

fn from(operation: AvgPool2dOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AwaitAllOperation<'c>> for Operation<'c>

source§

fn from(operation: AwaitAllOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<AwaitOperation<'c>> for Operation<'c>

source§

fn from(operation: AwaitOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<BarrierOperation<'c>> for Operation<'c>

source§

fn from(operation: BarrierOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<BinaryOperation<'c>> for Operation<'c>

source§

fn from(operation: BinaryOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<BitCastOperation<'c>> for Operation<'c>

source§

fn from(operation: BitCastOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<BitReverseOperation<'c>> for Operation<'c>

source§

fn from(operation: BitReverseOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<BitcastOperation<'c>> for Operation<'c>

source§

fn from(operation: BitcastOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<BitcastOperation<'c>> for Operation<'c>

source§

fn from(operation: BitcastOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<BitcastOperation<'c>> for Operation<'c>

source§

fn from(operation: BitcastOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<BitwiseAndOperation<'c>> for Operation<'c>

source§

fn from(operation: BitwiseAndOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<BitwiseNotOperation<'c>> for Operation<'c>

source§

fn from(operation: BitwiseNotOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<BitwiseOrOperation<'c>> for Operation<'c>

source§

fn from(operation: BitwiseOrOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<BitwiseXorOperation<'c>> for Operation<'c>

source§

fn from(operation: BitwiseXorOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<BlockDimOperation<'c>> for Operation<'c>

source§

fn from(operation: BlockDimOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<BlockIdOperation<'c>> for Operation<'c>

source§

fn from(operation: BlockIdOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<BoolConstantOperation<'c>> for Operation<'c>

source§

fn from(operation: BoolConstantOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<BrOperation<'c>> for Operation<'c>

source§

fn from(operation: BrOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<BranchOperation<'c>> for Operation<'c>

source§

fn from(operation: BranchOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<BranchOperation<'c>> for Operation<'c>

source§

fn from(operation: BranchOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<BroadcastOperation<'c>> for Operation<'c>

source§

fn from(operation: BroadcastOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<BroadcastOperation<'c>> for Operation<'c>

source§

fn from(operation: BroadcastOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ByteSwapOperation<'c>> for Operation<'c>

source§

fn from(operation: ByteSwapOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CallIndirectOperation<'c>> for Operation<'c>

source§

fn from(operation: CallIndirectOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CallIntrinsicOperation<'c>> for Operation<'c>

source§

fn from(operation: CallIntrinsicOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CallOperation<'c>> for Operation<'c>

source§

fn from(operation: CallOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CallOperation<'c>> for Operation<'c>

source§

fn from(operation: CallOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CallOperation<'c>> for Operation<'c>

source§

fn from(operation: CallOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CastOperation<'c>> for Operation<'c>

source§

fn from(operation: CastOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CastOperation<'c>> for Operation<'c>

source§

fn from(operation: CastOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CastOperation<'c>> for Operation<'c>

source§

fn from(operation: CastOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CastOperation<'c>> for Operation<'c>

source§

fn from(operation: CastOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CastSOperation<'c>> for Operation<'c>

source§

fn from(operation: CastSOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CastUOperation<'c>> for Operation<'c>

source§

fn from(operation: CastUOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CbrtOperation<'c>> for Operation<'c>

source§

fn from(operation: CbrtOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CeilDivSIOperation<'c>> for Operation<'c>

source§

fn from(operation: CeilDivSIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CeilDivSOperation<'c>> for Operation<'c>

source§

fn from(operation: CeilDivSOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CeilDivUIOperation<'c>> for Operation<'c>

source§

fn from(operation: CeilDivUIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CeilDivUOperation<'c>> for Operation<'c>

source§

fn from(operation: CeilDivUOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CeilOperation<'c>> for Operation<'c>

source§

fn from(operation: CeilOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CeilOperation<'c>> for Operation<'c>

source§

fn from(operation: CeilOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CheckAttributeOperation<'c>> for Operation<'c>

source§

fn from(operation: CheckAttributeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CheckOperandCountOperation<'c>> for Operation<'c>

source§

fn from(operation: CheckOperandCountOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CheckOperationNameOperation<'c>> for Operation<'c>

source§

fn from(operation: CheckOperationNameOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CheckResultCountOperation<'c>> for Operation<'c>

source§

fn from(operation: CheckResultCountOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CheckTypeOperation<'c>> for Operation<'c>

source§

fn from(operation: CheckTypeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CheckTypesOperation<'c>> for Operation<'c>

source§

fn from(operation: CheckTypesOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ClampOperation<'c>> for Operation<'c>

source§

fn from(operation: ClampOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CloneOperation<'c>> for Operation<'c>

source§

fn from(operation: CloneOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ClzOperation<'c>> for Operation<'c>

source§

fn from(operation: ClzOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CmpFOperation<'c>> for Operation<'c>

source§

fn from(operation: CmpFOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CmpIOperation<'c>> for Operation<'c>

source§

fn from(operation: CmpIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CmpOperation<'c>> for Operation<'c>

source§

fn from(operation: CmpOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CollapseShapeOperation<'c>> for Operation<'c>

source§

fn from(operation: CollapseShapeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CollapseShapeOperation<'c>> for Operation<'c>

source§

fn from(operation: CollapseShapeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ComdatOperation<'c>> for Operation<'c>

source§

fn from(operation: ComdatOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ComdatSelectorOperation<'c>> for Operation<'c>

source§

fn from(operation: ComdatSelectorOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CompressOperation<'c>> for Operation<'c>

source§

fn from(operation: CompressOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CompressStoreOperation<'c>> for Operation<'c>

source§

fn from(operation: CompressStoreOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ConcatOperation<'c>> for Operation<'c>

source§

fn from(operation: ConcatOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ConcatOperation<'c>> for Operation<'c>

source§

fn from(operation: ConcatOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ConcatenateOperation<'c>> for Operation<'c>

source§

fn from(operation: ConcatenateOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CondBrOperation<'c>> for Operation<'c>

source§

fn from(operation: CondBrOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CondBranchOperation<'c>> for Operation<'c>

source§

fn from(operation: CondBranchOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ConditionOperation<'c>> for Operation<'c>

source§

fn from(operation: ConditionOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ConstOperation<'c>> for Operation<'c>

source§

fn from(operation: ConstOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ConstShapeOperation<'c>> for Operation<'c>

source§

fn from(operation: ConstShapeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ConstSizeOperation<'c>> for Operation<'c>

source§

fn from(operation: ConstSizeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ConstWitnessOperation<'c>> for Operation<'c>

source§

fn from(operation: ConstWitnessOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ConstantMaskOperation<'c>> for Operation<'c>

source§

fn from(operation: ConstantMaskOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ConstantOperation<'c>> for Operation<'c>

source§

fn from(operation: ConstantOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ConstantOperation<'c>> for Operation<'c>

source§

fn from(operation: ConstantOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ConstantOperation<'c>> for Operation<'c>

source§

fn from(operation: ConstantOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ConstantOperation<'c>> for Operation<'c>

source§

fn from(operation: ConstantOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ContinueOperation<'c>> for Operation<'c>

source§

fn from(operation: ContinueOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ContractionOperation<'c>> for Operation<'c>

source§

fn from(operation: ContractionOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<Conv2DOperation<'c>> for Operation<'c>

source§

fn from(operation: Conv2DOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<Conv3DOperation<'c>> for Operation<'c>

source§

fn from(operation: Conv3DOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ConvertOperation<'c>> for Operation<'c>

source§

fn from(operation: ConvertOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CopyOperation<'c>> for Operation<'c>

source§

fn from(operation: CopyOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CopySignOperation<'c>> for Operation<'c>

source§

fn from(operation: CopySignOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CopySignOperation<'c>> for Operation<'c>

source§

fn from(operation: CopySignOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CopyTensorOperation<'c>> for Operation<'c>

source§

fn from(operation: CopyTensorOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CoroAlignOperation<'c>> for Operation<'c>

source§

fn from(operation: CoroAlignOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CoroBeginOperation<'c>> for Operation<'c>

source§

fn from(operation: CoroBeginOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CoroBeginOperation<'c>> for Operation<'c>

source§

fn from(operation: CoroBeginOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CoroEndOperation<'c>> for Operation<'c>

source§

fn from(operation: CoroEndOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CoroEndOperation<'c>> for Operation<'c>

source§

fn from(operation: CoroEndOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CoroFreeOperation<'c>> for Operation<'c>

source§

fn from(operation: CoroFreeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CoroFreeOperation<'c>> for Operation<'c>

source§

fn from(operation: CoroFreeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CoroIdOperation<'c>> for Operation<'c>

source§

fn from(operation: CoroIdOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CoroIdOperation<'c>> for Operation<'c>

source§

fn from(operation: CoroIdOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CoroResumeOperation<'c>> for Operation<'c>

source§

fn from(operation: CoroResumeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CoroSaveOperation<'c>> for Operation<'c>

source§

fn from(operation: CoroSaveOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CoroSaveOperation<'c>> for Operation<'c>

source§

fn from(operation: CoroSaveOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CoroSizeOperation<'c>> for Operation<'c>

source§

fn from(operation: CoroSizeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CoroSuspendOperation<'c>> for Operation<'c>

source§

fn from(operation: CoroSuspendOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CoroSuspendOperation<'c>> for Operation<'c>

source§

fn from(operation: CoroSuspendOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CosOperation<'c>> for Operation<'c>

source§

fn from(operation: CosOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CosOperation<'c>> for Operation<'c>

source§

fn from(operation: CosOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CountLeadingZerosOperation<'c>> for Operation<'c>

source§

fn from(operation: CountLeadingZerosOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CountLeadingZerosOperation<'c>> for Operation<'c>

source§

fn from(operation: CountLeadingZerosOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CountTrailingZerosOperation<'c>> for Operation<'c>

source§

fn from(operation: CountTrailingZerosOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CountTrailingZerosOperation<'c>> for Operation<'c>

source§

fn from(operation: CountTrailingZerosOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<Create2To4SpMatOperation<'c>> for Operation<'c>

source§

fn from(operation: Create2To4SpMatOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CreateAttributeOperation<'c>> for Operation<'c>

source§

fn from(operation: CreateAttributeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CreateCooAoSOperation<'c>> for Operation<'c>

source§

fn from(operation: CreateCooAoSOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CreateCooOperation<'c>> for Operation<'c>

source§

fn from(operation: CreateCooOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CreateCsrOperation<'c>> for Operation<'c>

source§

fn from(operation: CreateCsrOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CreateDnTensorOperation<'c>> for Operation<'c>

source§

fn from(operation: CreateDnTensorOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CreateGroupOperation<'c>> for Operation<'c>

source§

fn from(operation: CreateGroupOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CreateMaskOperation<'c>> for Operation<'c>

source§

fn from(operation: CreateMaskOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CreateOperationOperation<'c>> for Operation<'c>

source§

fn from(operation: CreateOperationOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CreateRangeOperation<'c>> for Operation<'c>

source§

fn from(operation: CreateRangeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CreateTypeOperation<'c>> for Operation<'c>

source§

fn from(operation: CreateTypeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CreateTypesOperation<'c>> for Operation<'c>

source§

fn from(operation: CreateTypesOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CstrBroadcastableOperation<'c>> for Operation<'c>

source§

fn from(operation: CstrBroadcastableOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CstrEqOperation<'c>> for Operation<'c>

source§

fn from(operation: CstrEqOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CstrRequireOperation<'c>> for Operation<'c>

source§

fn from(operation: CstrRequireOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CtPopOperation<'c>> for Operation<'c>

source§

fn from(operation: CtPopOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CtPopOperation<'c>> for Operation<'c>

source§

fn from(operation: CtPopOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<CustomOperation<'c>> for Operation<'c>

source§

fn from(operation: CustomOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<DbgDeclareOperation<'c>> for Operation<'c>

source§

fn from(operation: DbgDeclareOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<DbgLabelOperation<'c>> for Operation<'c>

source§

fn from(operation: DbgLabelOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<DbgValueOperation<'c>> for Operation<'c>

source§

fn from(operation: DbgValueOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<DeallocOperation<'c>> for Operation<'c>

source§

fn from(operation: DeallocOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<DeallocOperation<'c>> for Operation<'c>

source§

fn from(operation: DeallocOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<DeallocOperation<'c>> for Operation<'c>

source§

fn from(operation: DeallocOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<DeallocTensorOperation<'c>> for Operation<'c>

source§

fn from(operation: DeallocTensorOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<DebugPrintOperation<'c>> for Operation<'c>

source§

fn from(operation: DebugPrintOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<DebugTrapOperation<'c>> for Operation<'c>

source§

fn from(operation: DebugTrapOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<DepthwiseConv2DOperation<'c>> for Operation<'c>

source§

fn from(operation: DepthwiseConv2DOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<DequantizeCastOperation<'c>> for Operation<'c>

source§

fn from(operation: DequantizeCastOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<DestroyDnTensorOperation<'c>> for Operation<'c>

source§

fn from(operation: DestroyDnTensorOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<DestroySpMatOperation<'c>> for Operation<'c>

source§

fn from(operation: DestroySpMatOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<DimOperation<'c>> for Operation<'c>

source§

fn from(operation: DimOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<DimOperation<'c>> for Operation<'c>

source§

fn from(operation: DimOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<DimOperation<'c>> for Operation<'c>

source§

fn from(operation: DimOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<DivFOperation<'c>> for Operation<'c>

source§

fn from(operation: DivFOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<DivOperation<'c>> for Operation<'c>

source§

fn from(operation: DivOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<DivOperation<'c>> for Operation<'c>

source§

fn from(operation: DivOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<DivSIOperation<'c>> for Operation<'c>

source§

fn from(operation: DivSIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<DivSOperation<'c>> for Operation<'c>

source§

fn from(operation: DivSOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<DivUIOperation<'c>> for Operation<'c>

source§

fn from(operation: DivUIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<DivUOperation<'c>> for Operation<'c>

source§

fn from(operation: DivUOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<DmaStartOperation<'c>> for Operation<'c>

source§

fn from(operation: DmaStartOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<DmaWaitOperation<'c>> for Operation<'c>

source§

fn from(operation: DmaWaitOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<EhTypeidForOperation<'c>> for Operation<'c>

source§

fn from(operation: EhTypeidForOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<EmptyOperation<'c>> for Operation<'c>

source§

fn from(operation: EmptyOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<EqualOperation<'c>> for Operation<'c>

source§

fn from(operation: EqualOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<EraseOperation<'c>> for Operation<'c>

source§

fn from(operation: EraseOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<EraseOperation<'c>> for Operation<'c>

source§

fn from(operation: EraseOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ErfOperation<'c>> for Operation<'c>

source§

fn from(operation: ErfOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ErfOperation<'c>> for Operation<'c>

source§

fn from(operation: ErfOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ExecuteOperation<'c>> for Operation<'c>

source§

fn from(operation: ExecuteOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ExecuteRegionOperation<'c>> for Operation<'c>

source§

fn from(operation: ExecuteRegionOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<Exp2Operation<'c>> for Operation<'c>

source§

fn from(operation: Exp2Operation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<Exp2Operation<'c>> for Operation<'c>

source§

fn from(operation: Exp2Operation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ExpM1Operation<'c>> for Operation<'c>

source§

fn from(operation: ExpM1Operation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ExpOperation<'c>> for Operation<'c>

source§

fn from(operation: ExpOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ExpOperation<'c>> for Operation<'c>

source§

fn from(operation: ExpOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ExpOperation<'c>> for Operation<'c>

source§

fn from(operation: ExpOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ExpandLoadOperation<'c>> for Operation<'c>

source§

fn from(operation: ExpandLoadOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ExpandOperation<'c>> for Operation<'c>

source§

fn from(operation: ExpandOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ExpandShapeOperation<'c>> for Operation<'c>

source§

fn from(operation: ExpandShapeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ExpandShapeOperation<'c>> for Operation<'c>

source§

fn from(operation: ExpandShapeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ExpectOperation<'c>> for Operation<'c>

source§

fn from(operation: ExpectOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ExpectWithProbabilityOperation<'c>> for Operation<'c>

source§

fn from(operation: ExpectWithProbabilityOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ExtFOperation<'c>> for Operation<'c>

source§

fn from(operation: ExtFOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ExtSIOperation<'c>> for Operation<'c>

source§

fn from(operation: ExtSIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ExtUIOperation<'c>> for Operation<'c>

source§

fn from(operation: ExtUIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ExtractAlignedPointerAsIndexOperation<'c>> for Operation<'c>

source§

fn from(operation: ExtractAlignedPointerAsIndexOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ExtractElementOperation<'c>> for Operation<'c>

source§

fn from(operation: ExtractElementOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ExtractElementOperation<'c>> for Operation<'c>

source§

fn from(operation: ExtractElementOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ExtractOperation<'c>> for Operation<'c>

source§

fn from(operation: ExtractOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ExtractOperation<'c>> for Operation<'c>

source§

fn from(operation: ExtractOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ExtractOperation<'c>> for Operation<'c>

source§

fn from(operation: ExtractOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ExtractSliceOperation<'c>> for Operation<'c>

source§

fn from(operation: ExtractSliceOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ExtractStridedMetadataOperation<'c>> for Operation<'c>

source§

fn from(operation: ExtractStridedMetadataOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ExtractStridedSliceOperation<'c>> for Operation<'c>

source§

fn from(operation: ExtractStridedSliceOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ExtractValueOperation<'c>> for Operation<'c>

source§

fn from(operation: ExtractValueOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FAbsOperation<'c>> for Operation<'c>

source§

fn from(operation: FAbsOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FAddOperation<'c>> for Operation<'c>

source§

fn from(operation: FAddOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FCeilOperation<'c>> for Operation<'c>

source§

fn from(operation: FCeilOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FCmpOperation<'c>> for Operation<'c>

source§

fn from(operation: FCmpOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FDivOperation<'c>> for Operation<'c>

source§

fn from(operation: FDivOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FFT2dOperation<'c>> for Operation<'c>

source§

fn from(operation: FFT2dOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FFloorOperation<'c>> for Operation<'c>

source§

fn from(operation: FFloorOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FMAOperation<'c>> for Operation<'c>

source§

fn from(operation: FMAOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FMAOperation<'c>> for Operation<'c>

source§

fn from(operation: FMAOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FMulAddOperation<'c>> for Operation<'c>

source§

fn from(operation: FMulAddOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FMulOperation<'c>> for Operation<'c>

source§

fn from(operation: FMulOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FNegOperation<'c>> for Operation<'c>

source§

fn from(operation: FNegOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FPExtOperation<'c>> for Operation<'c>

source§

fn from(operation: FPExtOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FPToSIOperation<'c>> for Operation<'c>

source§

fn from(operation: FPToSIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FPToSIOperation<'c>> for Operation<'c>

source§

fn from(operation: FPToSIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FPToUIOperation<'c>> for Operation<'c>

source§

fn from(operation: FPToUIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FPToUIOperation<'c>> for Operation<'c>

source§

fn from(operation: FPToUIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FPTruncOperation<'c>> for Operation<'c>

source§

fn from(operation: FPTruncOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FPowIOperation<'c>> for Operation<'c>

source§

fn from(operation: FPowIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FRemOperation<'c>> for Operation<'c>

source§

fn from(operation: FRemOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FSubOperation<'c>> for Operation<'c>

source§

fn from(operation: FSubOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FTruncOperation<'c>> for Operation<'c>

source§

fn from(operation: FTruncOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FenceOperation<'c>> for Operation<'c>

source§

fn from(operation: FenceOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FinalizeOperation<'c>> for Operation<'c>

source§

fn from(operation: FinalizeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FlatTransposeOperation<'c>> for Operation<'c>

source§

fn from(operation: FlatTransposeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FloorDivSIOperation<'c>> for Operation<'c>

source§

fn from(operation: FloorDivSIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FloorDivSOperation<'c>> for Operation<'c>

source§

fn from(operation: FloorDivSOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FloorOperation<'c>> for Operation<'c>

source§

fn from(operation: FloorOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FloorOperation<'c>> for Operation<'c>

source§

fn from(operation: FloorOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FmaOperation<'c>> for Operation<'c>

source§

fn from(operation: FmaOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ForEachOperation<'c>> for Operation<'c>

source§

fn from(operation: ForEachOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ForOperation<'c>> for Operation<'c>

source§

fn from(operation: ForOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ForallOperation<'c>> for Operation<'c>

source§

fn from(operation: ForallOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ForeachMatchOperation<'c>> for Operation<'c>

source§

fn from(operation: ForeachMatchOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ForeachOperation<'c>> for Operation<'c>

source§

fn from(operation: ForeachOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ForeachOperation<'c>> for Operation<'c>

source§

fn from(operation: ForeachOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FreezeOperation<'c>> for Operation<'c>

source§

fn from(operation: FreezeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FromElementsOperation<'c>> for Operation<'c>

source§

fn from(operation: FromElementsOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FromExtentTensorOperation<'c>> for Operation<'c>

source§

fn from(operation: FromExtentTensorOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FromExtentsOperation<'c>> for Operation<'c>

source§

fn from(operation: FromExtentsOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FshlOperation<'c>> for Operation<'c>

source§

fn from(operation: FshlOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FshrOperation<'c>> for Operation<'c>

source§

fn from(operation: FshrOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FullyConnectedOperation<'c>> for Operation<'c>

source§

fn from(operation: FullyConnectedOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FuncOperation<'c>> for Operation<'c>

source§

fn from(operation: FuncOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FuncOperation<'c>> for Operation<'c>

source§

fn from(operation: FuncOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FuncOperation<'c>> for Operation<'c>

source§

fn from(operation: FuncOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FuncOperation<'c>> for Operation<'c>

source§

fn from(operation: FuncOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<FunctionLibraryOperation<'c>> for Operation<'c>

source§

fn from(operation: FunctionLibraryOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GEPOperation<'c>> for Operation<'c>

source§

fn from(operation: GEPOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GPUFuncOperation<'c>> for Operation<'c>

source§

fn from(operation: GPUFuncOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GPUModuleOperation<'c>> for Operation<'c>

source§

fn from(operation: GPUModuleOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GatherOperation<'c>> for Operation<'c>

source§

fn from(operation: GatherOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GatherOperation<'c>> for Operation<'c>

source§

fn from(operation: GatherOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GatherOperation<'c>> for Operation<'c>

source§

fn from(operation: GatherOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GenerateOperation<'c>> for Operation<'c>

source§

fn from(operation: GenerateOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GenericAtomicRMWOperation<'c>> for Operation<'c>

source§

fn from(operation: GenericAtomicRMWOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GetActiveLaneMaskOperation<'c>> for Operation<'c>

source§

fn from(operation: GetActiveLaneMaskOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GetAttributeOperation<'c>> for Operation<'c>

source§

fn from(operation: GetAttributeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GetAttributeTypeOperation<'c>> for Operation<'c>

source§

fn from(operation: GetAttributeTypeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GetConsumersOfResultOperation<'c>> for Operation<'c>

source§

fn from(operation: GetConsumersOfResultOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GetDefiningOperation<'c>> for Operation<'c>

source§

fn from(operation: GetDefiningOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GetDefiningOperation<'c>> for Operation<'c>

source§

fn from(operation: GetDefiningOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GetExtentOperation<'c>> for Operation<'c>

source§

fn from(operation: GetExtentOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GetGlobalOperation<'c>> for Operation<'c>

source§

fn from(operation: GetGlobalOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GetOperandOperation<'c>> for Operation<'c>

source§

fn from(operation: GetOperandOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GetOperandsOperation<'c>> for Operation<'c>

source§

fn from(operation: GetOperandsOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GetParentOperation<'c>> for Operation<'c>

source§

fn from(operation: GetParentOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GetProducerOfOperandOperation<'c>> for Operation<'c>

source§

fn from(operation: GetProducerOfOperandOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GetResultOperation<'c>> for Operation<'c>

source§

fn from(operation: GetResultOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GetResultOperation<'c>> for Operation<'c>

source§

fn from(operation: GetResultOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GetResultsOperation<'c>> for Operation<'c>

source§

fn from(operation: GetResultsOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GetStorageSpecifierOperation<'c>> for Operation<'c>

source§

fn from(operation: GetStorageSpecifierOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GetTypeOperation<'c>> for Operation<'c>

source§

fn from(operation: GetTypeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GetUsersOperation<'c>> for Operation<'c>

source§

fn from(operation: GetUsersOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GetValueTypeOperation<'c>> for Operation<'c>

source§

fn from(operation: GetValueTypeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GlobalCtorsOperation<'c>> for Operation<'c>

source§

fn from(operation: GlobalCtorsOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GlobalDtorsOperation<'c>> for Operation<'c>

source§

fn from(operation: GlobalDtorsOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GlobalIdOperation<'c>> for Operation<'c>

source§

fn from(operation: GlobalIdOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GlobalOperation<'c>> for Operation<'c>

source§

fn from(operation: GlobalOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GlobalOperation<'c>> for Operation<'c>

source§

fn from(operation: GlobalOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GreaterEqualOperation<'c>> for Operation<'c>

source§

fn from(operation: GreaterEqualOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GreaterOperation<'c>> for Operation<'c>

source§

fn from(operation: GreaterOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<GridDimOperation<'c>> for Operation<'c>

source§

fn from(operation: GridDimOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<HostRegisterOperation<'c>> for Operation<'c>

source§

fn from(operation: HostRegisterOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<HostUnregisterOperation<'c>> for Operation<'c>

source§

fn from(operation: HostUnregisterOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ICmpOperation<'c>> for Operation<'c>

source§

fn from(operation: ICmpOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<IPowIOperation<'c>> for Operation<'c>

source§

fn from(operation: IPowIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<IdentityOperation<'c>> for Operation<'c>

source§

fn from(operation: IdentityOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<IfOperation<'c>> for Operation<'c>

source§

fn from(operation: IfOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<IfOperation<'c>> for Operation<'c>

source§

fn from(operation: IfOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<InParallelOperation<'c>> for Operation<'c>

source§

fn from(operation: InParallelOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<IncludeOperation<'c>> for Operation<'c>

source§

fn from(operation: IncludeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<IndexCastOperation<'c>> for Operation<'c>

source§

fn from(operation: IndexCastOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<IndexCastUIOperation<'c>> for Operation<'c>

source§

fn from(operation: IndexCastUIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<IndexOperation<'c>> for Operation<'c>

source§

fn from(operation: IndexOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<IndexSwitchOperation<'c>> for Operation<'c>

source§

fn from(operation: IndexSwitchOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<IndexToSizeOperation<'c>> for Operation<'c>

source§

fn from(operation: IndexToSizeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<InlineAsmOperation<'c>> for Operation<'c>

source§

fn from(operation: InlineAsmOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<InsertElementOperation<'c>> for Operation<'c>

source§

fn from(operation: InsertElementOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<InsertElementOperation<'c>> for Operation<'c>

source§

fn from(operation: InsertElementOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<InsertOperation<'c>> for Operation<'c>

source§

fn from(operation: InsertOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<InsertOperation<'c>> for Operation<'c>

source§

fn from(operation: InsertOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<InsertOperation<'c>> for Operation<'c>

source§

fn from(operation: InsertOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<InsertSliceOperation<'c>> for Operation<'c>

source§

fn from(operation: InsertSliceOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<InsertStridedSliceOperation<'c>> for Operation<'c>

source§

fn from(operation: InsertStridedSliceOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<InsertValueOperation<'c>> for Operation<'c>

source§

fn from(operation: InsertValueOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<IntToPtrOperation<'c>> for Operation<'c>

source§

fn from(operation: IntToPtrOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<InvokeOperation<'c>> for Operation<'c>

source§

fn from(operation: InvokeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<IsBroadcastableOperation<'c>> for Operation<'c>

source§

fn from(operation: IsBroadcastableOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<IsConstantOperation<'c>> for Operation<'c>

source§

fn from(operation: IsConstantOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<IsFPClassOperation<'c>> for Operation<'c>

source§

fn from(operation: IsFPClassOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<IsNotNullOperation<'c>> for Operation<'c>

source§

fn from(operation: IsNotNullOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<LDSBarrierOperation<'c>> for Operation<'c>

source§

fn from(operation: LDSBarrierOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<LLVMFuncOperation<'c>> for Operation<'c>

source§

fn from(operation: LLVMFuncOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<LShrOperation<'c>> for Operation<'c>

source§

fn from(operation: LShrOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<LandingpadOperation<'c>> for Operation<'c>

source§

fn from(operation: LandingpadOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<LaneIdOperation<'c>> for Operation<'c>

source§

fn from(operation: LaneIdOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<LaunchFuncOperation<'c>> for Operation<'c>

source§

fn from(operation: LaunchFuncOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<LaunchOperation<'c>> for Operation<'c>

source§

fn from(operation: LaunchOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<LifetimeEndOperation<'c>> for Operation<'c>

source§

fn from(operation: LifetimeEndOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<LifetimeStartOperation<'c>> for Operation<'c>

source§

fn from(operation: LifetimeStartOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<LlrintOperation<'c>> for Operation<'c>

source§

fn from(operation: LlrintOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<LlroundOperation<'c>> for Operation<'c>

source§

fn from(operation: LlroundOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<LoadOperation<'c>> for Operation<'c>

source§

fn from(operation: LoadOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<LoadOperation<'c>> for Operation<'c>

source§

fn from(operation: LoadOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<LoadOperation<'c>> for Operation<'c>

source§

fn from(operation: LoadOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<LoadOperation<'c>> for Operation<'c>

source§

fn from(operation: LoadOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<Log10Operation<'c>> for Operation<'c>

source§

fn from(operation: Log10Operation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<Log10Operation<'c>> for Operation<'c>

source§

fn from(operation: Log10Operation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<Log1pOperation<'c>> for Operation<'c>

source§

fn from(operation: Log1pOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<Log2Operation<'c>> for Operation<'c>

source§

fn from(operation: Log2Operation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<Log2Operation<'c>> for Operation<'c>

source§

fn from(operation: Log2Operation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<LogOperation<'c>> for Operation<'c>

source§

fn from(operation: LogOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<LogOperation<'c>> for Operation<'c>

source§

fn from(operation: LogOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<LogOperation<'c>> for Operation<'c>

source§

fn from(operation: LogOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<LogicalAndOperation<'c>> for Operation<'c>

source§

fn from(operation: LogicalAndOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<LogicalLeftShiftOperation<'c>> for Operation<'c>

source§

fn from(operation: LogicalLeftShiftOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<LogicalNotOperation<'c>> for Operation<'c>

source§

fn from(operation: LogicalNotOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<LogicalOrOperation<'c>> for Operation<'c>

source§

fn from(operation: LogicalOrOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<LogicalRightShiftOperation<'c>> for Operation<'c>

source§

fn from(operation: LogicalRightShiftOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<LogicalXorOperation<'c>> for Operation<'c>

source§

fn from(operation: LogicalXorOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<LrintOperation<'c>> for Operation<'c>

source§

fn from(operation: LrintOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<LroundOperation<'c>> for Operation<'c>

source§

fn from(operation: LroundOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MFMAOperation<'c>> for Operation<'c>

source§

fn from(operation: MFMAOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MaskOperation<'c>> for Operation<'c>

source§

fn from(operation: MaskOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MaskedLoadOperation<'c>> for Operation<'c>

source§

fn from(operation: MaskedLoadOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MaskedLoadOperation<'c>> for Operation<'c>

source§

fn from(operation: MaskedLoadOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MaskedStoreOperation<'c>> for Operation<'c>

source§

fn from(operation: MaskedStoreOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MaskedStoreOperation<'c>> for Operation<'c>

source§

fn from(operation: MaskedStoreOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MatMulOperation<'c>> for Operation<'c>

source§

fn from(operation: MatMulOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MatchOperationNameOperation<'c>> for Operation<'c>

source§

fn from(operation: MatchOperationNameOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MatchParamCmpIOperation<'c>> for Operation<'c>

source§

fn from(operation: MatchParamCmpIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MatmulOperation<'c>> for Operation<'c>

source§

fn from(operation: MatmulOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MatrixColumnMajorLoadOperation<'c>> for Operation<'c>

source§

fn from(operation: MatrixColumnMajorLoadOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MatrixColumnMajorStoreOperation<'c>> for Operation<'c>

source§

fn from(operation: MatrixColumnMajorStoreOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MatrixMultiplyOperation<'c>> for Operation<'c>

source§

fn from(operation: MatrixMultiplyOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MatrixTransposeOperation<'c>> for Operation<'c>

source§

fn from(operation: MatrixTransposeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MaxFOperation<'c>> for Operation<'c>

source§

fn from(operation: MaxFOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MaxNumOperation<'c>> for Operation<'c>

source§

fn from(operation: MaxNumOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MaxOperation<'c>> for Operation<'c>

source§

fn from(operation: MaxOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MaxPool2dOperation<'c>> for Operation<'c>

source§

fn from(operation: MaxPool2dOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MaxSIOperation<'c>> for Operation<'c>

source§

fn from(operation: MaxSIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MaxSOperation<'c>> for Operation<'c>

source§

fn from(operation: MaxSOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MaxUIOperation<'c>> for Operation<'c>

source§

fn from(operation: MaxUIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MaxUOperation<'c>> for Operation<'c>

source§

fn from(operation: MaxUOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MaximumOperation<'c>> for Operation<'c>

source§

fn from(operation: MaximumOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MaximumOperation<'c>> for Operation<'c>

source§

fn from(operation: MaximumOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MeetOperation<'c>> for Operation<'c>

source§

fn from(operation: MeetOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MemcpyInlineOperation<'c>> for Operation<'c>

source§

fn from(operation: MemcpyInlineOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MemcpyOperation<'c>> for Operation<'c>

source§

fn from(operation: MemcpyOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MemcpyOperation<'c>> for Operation<'c>

source§

fn from(operation: MemcpyOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MemmoveOperation<'c>> for Operation<'c>

source§

fn from(operation: MemmoveOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MemorySpaceCastOperation<'c>> for Operation<'c>

source§

fn from(operation: MemorySpaceCastOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MemsetOperation<'c>> for Operation<'c>

source§

fn from(operation: MemsetOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MemsetOperation<'c>> for Operation<'c>

source§

fn from(operation: MemsetOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MergeHandlesOperation<'c>> for Operation<'c>

source§

fn from(operation: MergeHandlesOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MetadataOperation<'c>> for Operation<'c>

source§

fn from(operation: MetadataOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MinFOperation<'c>> for Operation<'c>

source§

fn from(operation: MinFOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MinNumOperation<'c>> for Operation<'c>

source§

fn from(operation: MinNumOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MinOperation<'c>> for Operation<'c>

source§

fn from(operation: MinOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MinSIOperation<'c>> for Operation<'c>

source§

fn from(operation: MinSIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MinSOperation<'c>> for Operation<'c>

source§

fn from(operation: MinSOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MinUIOperation<'c>> for Operation<'c>

source§

fn from(operation: MinUIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MinUOperation<'c>> for Operation<'c>

source§

fn from(operation: MinUOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MinimumOperation<'c>> for Operation<'c>

source§

fn from(operation: MinimumOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MinimumOperation<'c>> for Operation<'c>

source§

fn from(operation: MinimumOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ModuleEndOperation<'c>> for Operation<'c>

source§

fn from(operation: ModuleEndOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ModuleOperation<'c>> for Operation<'c>

source§

fn from(operation: ModuleOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MulFOperation<'c>> for Operation<'c>

source§

fn from(operation: MulFOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MulIOperation<'c>> for Operation<'c>

source§

fn from(operation: MulIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MulOperation<'c>> for Operation<'c>

source§

fn from(operation: MulOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MulOperation<'c>> for Operation<'c>

source§

fn from(operation: MulOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MulOperation<'c>> for Operation<'c>

source§

fn from(operation: MulOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MulOperation<'c>> for Operation<'c>

source§

fn from(operation: MulOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MulSIExtendedOperation<'c>> for Operation<'c>

source§

fn from(operation: MulSIExtendedOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MulUIExtendedOperation<'c>> for Operation<'c>

source§

fn from(operation: MulUIExtendedOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<MultiDimReductionOperation<'c>> for Operation<'c>

source§

fn from(operation: MultiDimReductionOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<NamedSequenceOperation<'c>> for Operation<'c>

source§

fn from(operation: NamedSequenceOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<NearbyintOperation<'c>> for Operation<'c>

source§

fn from(operation: NearbyintOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<NegFOperation<'c>> for Operation<'c>

source§

fn from(operation: NegFOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<NegateOperation<'c>> for Operation<'c>

source§

fn from(operation: NegateOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<NewOperation<'c>> for Operation<'c>

source§

fn from(operation: NewOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<NoAliasScopeDeclOperation<'c>> for Operation<'c>

source§

fn from(operation: NoAliasScopeDeclOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<NullOperation<'c>> for Operation<'c>

source§

fn from(operation: NullOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<NumElementsOperation<'c>> for Operation<'c>

source§

fn from(operation: NumElementsOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<NumSubgroupsOperation<'c>> for Operation<'c>

source§

fn from(operation: NumSubgroupsOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<NumberOfEntriesOperation<'c>> for Operation<'c>

source§

fn from(operation: NumberOfEntriesOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<OperandOperation<'c>> for Operation<'c>

source§

fn from(operation: OperandOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<OperandsOperation<'c>> for Operation<'c>

source§

fn from(operation: OperandsOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<OperationOperation<'c>> for Operation<'c>

source§

fn from(operation: OperationOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<OrIOperation<'c>> for Operation<'c>

source§

fn from(operation: OrIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<OrOperation<'c>> for Operation<'c>

source§

fn from(operation: OrOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<OrOperation<'c>> for Operation<'c>

source§

fn from(operation: OrOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<OutOperation<'c>> for Operation<'c>

source§

fn from(operation: OutOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<OuterProductOperation<'c>> for Operation<'c>

source§

fn from(operation: OuterProductOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<PackOperation<'c>> for Operation<'c>

source§

fn from(operation: PackOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<PackOperation<'c>> for Operation<'c>

source§

fn from(operation: PackOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<PadOperation<'c>> for Operation<'c>

source§

fn from(operation: PadOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<PadOperation<'c>> for Operation<'c>

source§

fn from(operation: PadOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ParallelInsertSliceOperation<'c>> for Operation<'c>

source§

fn from(operation: ParallelInsertSliceOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ParallelOperation<'c>> for Operation<'c>

source§

fn from(operation: ParallelOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ParamConstantOperation<'c>> for Operation<'c>

source§

fn from(operation: ParamConstantOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<PatternOperation<'c>> for Operation<'c>

source§

fn from(operation: PatternOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<PoisonOperation<'c>> for Operation<'c>

source§

fn from(operation: PoisonOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<PowFOperation<'c>> for Operation<'c>

source§

fn from(operation: PowFOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<PowIOperation<'c>> for Operation<'c>

source§

fn from(operation: PowIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<PowOperation<'c>> for Operation<'c>

source§

fn from(operation: PowOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<PowOperation<'c>> for Operation<'c>

source§

fn from(operation: PowOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<PrefetchOperation<'c>> for Operation<'c>

source§

fn from(operation: PrefetchOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<PrefetchOperation<'c>> for Operation<'c>

source§

fn from(operation: PrefetchOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<PrintOperation<'c>> for Operation<'c>

source§

fn from(operation: PrintOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<PrintOperation<'c>> for Operation<'c>

source§

fn from(operation: PrintOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<PrintfOperation<'c>> for Operation<'c>

source§

fn from(operation: PrintfOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<PtrAnnotationOperation<'c>> for Operation<'c>

source§

fn from(operation: PtrAnnotationOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<PtrToIntOperation<'c>> for Operation<'c>

source§

fn from(operation: PtrToIntOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<PushBackOperation<'c>> for Operation<'c>

source§

fn from(operation: PushBackOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<QuantizeCastOperation<'c>> for Operation<'c>

source§

fn from(operation: QuantizeCastOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RFFT2dOperation<'c>> for Operation<'c>

source§

fn from(operation: RFFT2dOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RangeOperation<'c>> for Operation<'c>

source§

fn from(operation: RangeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RankOperation<'c>> for Operation<'c>

source§

fn from(operation: RankOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RankOperation<'c>> for Operation<'c>

source§

fn from(operation: RankOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RankOperation<'c>> for Operation<'c>

source§

fn from(operation: RankOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RawBufferAtomicCmpswapOperation<'c>> for Operation<'c>

source§

fn from(operation: RawBufferAtomicCmpswapOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RawBufferAtomicFaddOperation<'c>> for Operation<'c>

source§

fn from(operation: RawBufferAtomicFaddOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RawBufferAtomicFmaxOperation<'c>> for Operation<'c>

source§

fn from(operation: RawBufferAtomicFmaxOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RawBufferAtomicSmaxOperation<'c>> for Operation<'c>

source§

fn from(operation: RawBufferAtomicSmaxOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RawBufferAtomicUminOperation<'c>> for Operation<'c>

source§

fn from(operation: RawBufferAtomicUminOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RawBufferLoadOperation<'c>> for Operation<'c>

source§

fn from(operation: RawBufferLoadOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RawBufferStoreOperation<'c>> for Operation<'c>

source§

fn from(operation: RawBufferStoreOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ReallocOperation<'c>> for Operation<'c>

source§

fn from(operation: ReallocOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ReciprocalOperation<'c>> for Operation<'c>

source§

fn from(operation: ReciprocalOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RecordMatchOperation<'c>> for Operation<'c>

source§

fn from(operation: RecordMatchOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ReduceAllOperation<'c>> for Operation<'c>

source§

fn from(operation: ReduceAllOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ReduceAnyOperation<'c>> for Operation<'c>

source§

fn from(operation: ReduceAnyOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ReduceMaxOperation<'c>> for Operation<'c>

source§

fn from(operation: ReduceMaxOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ReduceMinOperation<'c>> for Operation<'c>

source§

fn from(operation: ReduceMinOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ReduceOperation<'c>> for Operation<'c>

source§

fn from(operation: ReduceOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ReduceOperation<'c>> for Operation<'c>

source§

fn from(operation: ReduceOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ReduceOperation<'c>> for Operation<'c>

source§

fn from(operation: ReduceOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ReduceProdOperation<'c>> for Operation<'c>

source§

fn from(operation: ReduceProdOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ReduceReturnOperation<'c>> for Operation<'c>

source§

fn from(operation: ReduceReturnOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ReduceSumOperation<'c>> for Operation<'c>

source§

fn from(operation: ReduceSumOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ReductionOperation<'c>> for Operation<'c>

source§

fn from(operation: ReductionOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ReinterpretCastOperation<'c>> for Operation<'c>

source§

fn from(operation: ReinterpretCastOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RemFOperation<'c>> for Operation<'c>

source§

fn from(operation: RemFOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RemSIOperation<'c>> for Operation<'c>

source§

fn from(operation: RemSIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RemSOperation<'c>> for Operation<'c>

source§

fn from(operation: RemSOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RemUIOperation<'c>> for Operation<'c>

source§

fn from(operation: RemUIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RemUOperation<'c>> for Operation<'c>

source§

fn from(operation: RemUOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ReplaceOperation<'c>> for Operation<'c>

source§

fn from(operation: ReplaceOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ReplaceOperation<'c>> for Operation<'c>

source§

fn from(operation: ReplaceOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ReplicateOperation<'c>> for Operation<'c>

source§

fn from(operation: ReplicateOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RescaleOperation<'c>> for Operation<'c>

source§

fn from(operation: RescaleOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ReshapeOperation<'c>> for Operation<'c>

source§

fn from(operation: ReshapeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ReshapeOperation<'c>> for Operation<'c>

source§

fn from(operation: ReshapeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ReshapeOperation<'c>> for Operation<'c>

source§

fn from(operation: ReshapeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ReshapeOperation<'c>> for Operation<'c>

source§

fn from(operation: ReshapeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ResizeOperation<'c>> for Operation<'c>

source§

fn from(operation: ResizeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ResultOperation<'c>> for Operation<'c>

source§

fn from(operation: ResultOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ResultsOperation<'c>> for Operation<'c>

source§

fn from(operation: ResultsOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ResumeOperation<'c>> for Operation<'c>

source§

fn from(operation: ResumeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ReturnOperation<'c>> for Operation<'c>

source§

fn from(operation: ReturnOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ReturnOperation<'c>> for Operation<'c>

source§

fn from(operation: ReturnOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ReturnOperation<'c>> for Operation<'c>

source§

fn from(operation: ReturnOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ReturnOperation<'c>> for Operation<'c>

source§

fn from(operation: ReturnOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ReturnOperation<'c>> for Operation<'c>

source§

fn from(operation: ReturnOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ReverseOperation<'c>> for Operation<'c>

source§

fn from(operation: ReverseOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RewriteOperation<'c>> for Operation<'c>

source§

fn from(operation: RewriteOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RintOperation<'c>> for Operation<'c>

source§

fn from(operation: RintOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RoundEvenOperation<'c>> for Operation<'c>

source§

fn from(operation: RoundEvenOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RoundEvenOperation<'c>> for Operation<'c>

source§

fn from(operation: RoundEvenOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RoundOperation<'c>> for Operation<'c>

source§

fn from(operation: RoundOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RoundOperation<'c>> for Operation<'c>

source§

fn from(operation: RoundOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RsqrtOperation<'c>> for Operation<'c>

source§

fn from(operation: RsqrtOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RsqrtOperation<'c>> for Operation<'c>

source§

fn from(operation: RsqrtOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RuntimeAddRefOperation<'c>> for Operation<'c>

source§

fn from(operation: RuntimeAddRefOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RuntimeAddToGroupOperation<'c>> for Operation<'c>

source§

fn from(operation: RuntimeAddToGroupOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RuntimeAwaitAndResumeOperation<'c>> for Operation<'c>

source§

fn from(operation: RuntimeAwaitAndResumeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RuntimeAwaitOperation<'c>> for Operation<'c>

source§

fn from(operation: RuntimeAwaitOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RuntimeCreateGroupOperation<'c>> for Operation<'c>

source§

fn from(operation: RuntimeCreateGroupOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RuntimeCreateOperation<'c>> for Operation<'c>

source§

fn from(operation: RuntimeCreateOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RuntimeDropRefOperation<'c>> for Operation<'c>

source§

fn from(operation: RuntimeDropRefOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RuntimeIsErrorOperation<'c>> for Operation<'c>

source§

fn from(operation: RuntimeIsErrorOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RuntimeLoadOperation<'c>> for Operation<'c>

source§

fn from(operation: RuntimeLoadOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RuntimeNumWorkerThreadsOperation<'c>> for Operation<'c>

source§

fn from(operation: RuntimeNumWorkerThreadsOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RuntimeResumeOperation<'c>> for Operation<'c>

source§

fn from(operation: RuntimeResumeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RuntimeSetAvailableOperation<'c>> for Operation<'c>

source§

fn from(operation: RuntimeSetAvailableOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RuntimeSetErrorOperation<'c>> for Operation<'c>

source§

fn from(operation: RuntimeSetErrorOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<RuntimeStoreOperation<'c>> for Operation<'c>

source§

fn from(operation: RuntimeStoreOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SAddSatOperation<'c>> for Operation<'c>

source§

fn from(operation: SAddSatOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SAddWithOverflowOperation<'c>> for Operation<'c>

source§

fn from(operation: SAddWithOverflowOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SDDMMBufferSizeOperation<'c>> for Operation<'c>

source§

fn from(operation: SDDMMBufferSizeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SDDMMOperation<'c>> for Operation<'c>

source§

fn from(operation: SDDMMOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SDivOperation<'c>> for Operation<'c>

source§

fn from(operation: SDivOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SExtOperation<'c>> for Operation<'c>

source§

fn from(operation: SExtOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SIToFPOperation<'c>> for Operation<'c>

source§

fn from(operation: SIToFPOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SIToFPOperation<'c>> for Operation<'c>

source§

fn from(operation: SIToFPOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SMaxOperation<'c>> for Operation<'c>

source§

fn from(operation: SMaxOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SMinOperation<'c>> for Operation<'c>

source§

fn from(operation: SMinOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SMulWithOverflowOperation<'c>> for Operation<'c>

source§

fn from(operation: SMulWithOverflowOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SMullOperation<'c>> for Operation<'c>

source§

fn from(operation: SMullOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SRemOperation<'c>> for Operation<'c>

source§

fn from(operation: SRemOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SSACopyOperation<'c>> for Operation<'c>

source§

fn from(operation: SSACopyOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SSHLSatOperation<'c>> for Operation<'c>

source§

fn from(operation: SSHLSatOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SSubSatOperation<'c>> for Operation<'c>

source§

fn from(operation: SSubSatOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SSubWithOverflowOperation<'c>> for Operation<'c>

source§

fn from(operation: SSubWithOverflowOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ScalableExtractOperation<'c>> for Operation<'c>

source§

fn from(operation: ScalableExtractOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ScalableInsertOperation<'c>> for Operation<'c>

source§

fn from(operation: ScalableInsertOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ScalableMaskedAddFIntrOperation<'c>> for Operation<'c>

source§

fn from(operation: ScalableMaskedAddFIntrOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ScalableMaskedAddFOperation<'c>> for Operation<'c>

source§

fn from(operation: ScalableMaskedAddFOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ScalableMaskedAddIIntrOperation<'c>> for Operation<'c>

source§

fn from(operation: ScalableMaskedAddIIntrOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ScalableMaskedAddIOperation<'c>> for Operation<'c>

source§

fn from(operation: ScalableMaskedAddIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ScalableMaskedDivFIntrOperation<'c>> for Operation<'c>

source§

fn from(operation: ScalableMaskedDivFIntrOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ScalableMaskedDivFOperation<'c>> for Operation<'c>

source§

fn from(operation: ScalableMaskedDivFOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ScalableMaskedMulFIntrOperation<'c>> for Operation<'c>

source§

fn from(operation: ScalableMaskedMulFIntrOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ScalableMaskedMulFOperation<'c>> for Operation<'c>

source§

fn from(operation: ScalableMaskedMulFOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ScalableMaskedMulIIntrOperation<'c>> for Operation<'c>

source§

fn from(operation: ScalableMaskedMulIIntrOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ScalableMaskedMulIOperation<'c>> for Operation<'c>

source§

fn from(operation: ScalableMaskedMulIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ScalableMaskedSDivIIntrOperation<'c>> for Operation<'c>

source§

fn from(operation: ScalableMaskedSDivIIntrOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ScalableMaskedSDivIOperation<'c>> for Operation<'c>

source§

fn from(operation: ScalableMaskedSDivIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ScalableMaskedSubFIntrOperation<'c>> for Operation<'c>

source§

fn from(operation: ScalableMaskedSubFIntrOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ScalableMaskedSubFOperation<'c>> for Operation<'c>

source§

fn from(operation: ScalableMaskedSubFOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ScalableMaskedSubIIntrOperation<'c>> for Operation<'c>

source§

fn from(operation: ScalableMaskedSubIIntrOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ScalableMaskedSubIOperation<'c>> for Operation<'c>

source§

fn from(operation: ScalableMaskedSubIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ScalableMaskedUDivIIntrOperation<'c>> for Operation<'c>

source§

fn from(operation: ScalableMaskedUDivIIntrOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ScalableMaskedUDivIOperation<'c>> for Operation<'c>

source§

fn from(operation: ScalableMaskedUDivIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ScanOperation<'c>> for Operation<'c>

source§

fn from(operation: ScanOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ScatterOperation<'c>> for Operation<'c>

source§

fn from(operation: ScatterOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ScatterOperation<'c>> for Operation<'c>

source§

fn from(operation: ScatterOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ScatterOperation<'c>> for Operation<'c>

source§

fn from(operation: ScatterOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<Sdot2dOperation<'c>> for Operation<'c>

source§

fn from(operation: Sdot2dOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SdotIntrOperation<'c>> for Operation<'c>

source§

fn from(operation: SdotIntrOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SdotOperation<'c>> for Operation<'c>

source§

fn from(operation: SdotOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SdotOperation<'c>> for Operation<'c>

source§

fn from(operation: SdotOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SelectOperation<'c>> for Operation<'c>

source§

fn from(operation: SelectOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SelectOperation<'c>> for Operation<'c>

source§

fn from(operation: SelectOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SelectOperation<'c>> for Operation<'c>

source§

fn from(operation: SelectOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SelectOperation<'c>> for Operation<'c>

source§

fn from(operation: SelectOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SelectOperation<'c>> for Operation<'c>

source§

fn from(operation: SelectOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SequenceOperation<'c>> for Operation<'c>

source§

fn from(operation: SequenceOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SetDefaultDeviceOperation<'c>> for Operation<'c>

source§

fn from(operation: SetDefaultDeviceOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SetStorageSpecifierOperation<'c>> for Operation<'c>

source§

fn from(operation: SetStorageSpecifierOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ShLIOperation<'c>> for Operation<'c>

source§

fn from(operation: ShLIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ShRSIOperation<'c>> for Operation<'c>

source§

fn from(operation: ShRSIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ShRUIOperation<'c>> for Operation<'c>

source§

fn from(operation: ShRUIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ShapeCastOperation<'c>> for Operation<'c>

source§

fn from(operation: ShapeCastOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ShapeEqOperation<'c>> for Operation<'c>

source§

fn from(operation: ShapeEqOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ShapeOfOperation<'c>> for Operation<'c>

source§

fn from(operation: ShapeOfOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ShlOperation<'c>> for Operation<'c>

source§

fn from(operation: ShlOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ShlOperation<'c>> for Operation<'c>

source§

fn from(operation: ShlOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ShrSOperation<'c>> for Operation<'c>

source§

fn from(operation: ShrSOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ShrUOperation<'c>> for Operation<'c>

source§

fn from(operation: ShrUOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ShuffleOperation<'c>> for Operation<'c>

source§

fn from(operation: ShuffleOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ShuffleOperation<'c>> for Operation<'c>

source§

fn from(operation: ShuffleOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ShuffleVectorOperation<'c>> for Operation<'c>

source§

fn from(operation: ShuffleVectorOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SigmoidOperation<'c>> for Operation<'c>

source§

fn from(operation: SigmoidOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SinOperation<'c>> for Operation<'c>

source§

fn from(operation: SinOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SinOperation<'c>> for Operation<'c>

source§

fn from(operation: SinOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SizeOfOperation<'c>> for Operation<'c>

source§

fn from(operation: SizeOfOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SizeToIndexOperation<'c>> for Operation<'c>

source§

fn from(operation: SizeToIndexOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SliceOperation<'c>> for Operation<'c>

source§

fn from(operation: SliceOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SmmlaIntrOperation<'c>> for Operation<'c>

source§

fn from(operation: SmmlaIntrOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SmmlaOperation<'c>> for Operation<'c>

source§

fn from(operation: SmmlaOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SoftmaxOperation<'c>> for Operation<'c>

source§

fn from(operation: SoftmaxOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SortCooOperation<'c>> for Operation<'c>

source§

fn from(operation: SortCooOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SortOperation<'c>> for Operation<'c>

source§

fn from(operation: SortOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SpMMBufferSizeOperation<'c>> for Operation<'c>

source§

fn from(operation: SpMMBufferSizeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SpMMOperation<'c>> for Operation<'c>

source§

fn from(operation: SpMMOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SpMVBufferSizeOperation<'c>> for Operation<'c>

source§

fn from(operation: SpMVBufferSizeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SpMVOperation<'c>> for Operation<'c>

source§

fn from(operation: SpMVOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SplatOperation<'c>> for Operation<'c>

source§

fn from(operation: SplatOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SplatOperation<'c>> for Operation<'c>

source§

fn from(operation: SplatOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SplitAtOperation<'c>> for Operation<'c>

source§

fn from(operation: SplitAtOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SplitHandleOperation<'c>> for Operation<'c>

source§

fn from(operation: SplitHandleOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SqrtOperation<'c>> for Operation<'c>

source§

fn from(operation: SqrtOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SqrtOperation<'c>> for Operation<'c>

source§

fn from(operation: SqrtOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<StackRestoreOperation<'c>> for Operation<'c>

source§

fn from(operation: StackRestoreOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<StackSaveOperation<'c>> for Operation<'c>

source§

fn from(operation: StackSaveOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<StepVectorOperation<'c>> for Operation<'c>

source§

fn from(operation: StepVectorOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<StorageCastOperation<'c>> for Operation<'c>

source§

fn from(operation: StorageCastOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<StorageSpecifierInitOperation<'c>> for Operation<'c>

source§

fn from(operation: StorageSpecifierInitOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<StoreOperation<'c>> for Operation<'c>

source§

fn from(operation: StoreOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<StoreOperation<'c>> for Operation<'c>

source§

fn from(operation: StoreOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<StoreOperation<'c>> for Operation<'c>

source§

fn from(operation: StoreOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SubFOperation<'c>> for Operation<'c>

source§

fn from(operation: SubFOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SubIOperation<'c>> for Operation<'c>

source§

fn from(operation: SubIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SubOperation<'c>> for Operation<'c>

source§

fn from(operation: SubOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SubOperation<'c>> for Operation<'c>

source§

fn from(operation: SubOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SubOperation<'c>> for Operation<'c>

source§

fn from(operation: SubOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SubViewOperation<'c>> for Operation<'c>

source§

fn from(operation: SubViewOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SubgroupIdOperation<'c>> for Operation<'c>

source§

fn from(operation: SubgroupIdOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SubgroupMmaComputeOperation<'c>> for Operation<'c>

source§

fn from(operation: SubgroupMmaComputeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SubgroupMmaConstantMatrixOperation<'c>> for Operation<'c>

source§

fn from(operation: SubgroupMmaConstantMatrixOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SubgroupMmaElementwiseOperation<'c>> for Operation<'c>

source§

fn from(operation: SubgroupMmaElementwiseOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SubgroupMmaLoadMatrixOperation<'c>> for Operation<'c>

source§

fn from(operation: SubgroupMmaLoadMatrixOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SubgroupMmaStoreMatrixOperation<'c>> for Operation<'c>

source§

fn from(operation: SubgroupMmaStoreMatrixOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SubgroupReduceOperation<'c>> for Operation<'c>

source§

fn from(operation: SubgroupReduceOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SubgroupSizeOperation<'c>> for Operation<'c>

source§

fn from(operation: SubgroupSizeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SwitchAttributeOperation<'c>> for Operation<'c>

source§

fn from(operation: SwitchAttributeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SwitchOperandCountOperation<'c>> for Operation<'c>

source§

fn from(operation: SwitchOperandCountOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SwitchOperation<'c>> for Operation<'c>

source§

fn from(operation: SwitchOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SwitchOperation<'c>> for Operation<'c>

source§

fn from(operation: SwitchOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SwitchOperationNameOperation<'c>> for Operation<'c>

source§

fn from(operation: SwitchOperationNameOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SwitchResultCountOperation<'c>> for Operation<'c>

source§

fn from(operation: SwitchResultCountOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SwitchTypeOperation<'c>> for Operation<'c>

source§

fn from(operation: SwitchTypeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<SwitchTypesOperation<'c>> for Operation<'c>

source§

fn from(operation: SwitchTypesOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<TableOperation<'c>> for Operation<'c>

source§

fn from(operation: TableOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<TanOperation<'c>> for Operation<'c>

source§

fn from(operation: TanOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<TanhOperation<'c>> for Operation<'c>

source§

fn from(operation: TanhOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<TanhOperation<'c>> for Operation<'c>

source§

fn from(operation: TanhOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<TensorStoreOperation<'c>> for Operation<'c>

source§

fn from(operation: TensorStoreOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<TerminatorOperation<'c>> for Operation<'c>

source§

fn from(operation: TerminatorOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ThreadIdOperation<'c>> for Operation<'c>

source§

fn from(operation: ThreadIdOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ThreadlocalAddressOperation<'c>> for Operation<'c>

source§

fn from(operation: ThreadlocalAddressOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<TileOperation<'c>> for Operation<'c>

source§

fn from(operation: TileOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ToCoordinatesBufferOperation<'c>> for Operation<'c>

source§

fn from(operation: ToCoordinatesBufferOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ToCoordinatesOperation<'c>> for Operation<'c>

source§

fn from(operation: ToCoordinatesOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ToExtentTensorOperation<'c>> for Operation<'c>

source§

fn from(operation: ToExtentTensorOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ToMemrefOperation<'c>> for Operation<'c>

source§

fn from(operation: ToMemrefOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ToPositionsOperation<'c>> for Operation<'c>

source§

fn from(operation: ToPositionsOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ToSliceOffsetOperation<'c>> for Operation<'c>

source§

fn from(operation: ToSliceOffsetOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ToSliceStrideOperation<'c>> for Operation<'c>

source§

fn from(operation: ToSliceStrideOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ToTensorOperation<'c>> for Operation<'c>

source§

fn from(operation: ToTensorOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ToValuesOperation<'c>> for Operation<'c>

source§

fn from(operation: ToValuesOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<TransferReadOperation<'c>> for Operation<'c>

source§

fn from(operation: TransferReadOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<TransferWriteOperation<'c>> for Operation<'c>

source§

fn from(operation: TransferWriteOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<TransposeConv2DOperation<'c>> for Operation<'c>

source§

fn from(operation: TransposeConv2DOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<TransposeOperation<'c>> for Operation<'c>

source§

fn from(operation: TransposeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<TransposeOperation<'c>> for Operation<'c>

source§

fn from(operation: TransposeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<TransposeOperation<'c>> for Operation<'c>

source§

fn from(operation: TransposeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<TrapOperation<'c>> for Operation<'c>

source§

fn from(operation: TrapOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<TruncFOperation<'c>> for Operation<'c>

source§

fn from(operation: TruncFOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<TruncIOperation<'c>> for Operation<'c>

source§

fn from(operation: TruncIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<TruncOperation<'c>> for Operation<'c>

source§

fn from(operation: TruncOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<TruncOperation<'c>> for Operation<'c>

source§

fn from(operation: TruncOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<TypeCastOperation<'c>> for Operation<'c>

source§

fn from(operation: TypeCastOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<TypeOperation<'c>> for Operation<'c>

source§

fn from(operation: TypeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<TypesOperation<'c>> for Operation<'c>

source§

fn from(operation: TypesOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<UAddSatOperation<'c>> for Operation<'c>

source§

fn from(operation: UAddSatOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<UAddWithOverflowOperation<'c>> for Operation<'c>

source§

fn from(operation: UAddWithOverflowOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<UBSanTrapOperation<'c>> for Operation<'c>

source§

fn from(operation: UBSanTrapOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<UDivOperation<'c>> for Operation<'c>

source§

fn from(operation: UDivOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<UIToFPOperation<'c>> for Operation<'c>

source§

fn from(operation: UIToFPOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<UIToFPOperation<'c>> for Operation<'c>

source§

fn from(operation: UIToFPOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<UMaxOperation<'c>> for Operation<'c>

source§

fn from(operation: UMaxOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<UMinOperation<'c>> for Operation<'c>

source§

fn from(operation: UMinOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<UMulWithOverflowOperation<'c>> for Operation<'c>

source§

fn from(operation: UMulWithOverflowOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<URemOperation<'c>> for Operation<'c>

source§

fn from(operation: URemOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<USHLSatOperation<'c>> for Operation<'c>

source§

fn from(operation: USHLSatOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<USubSatOperation<'c>> for Operation<'c>

source§

fn from(operation: USubSatOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<USubWithOverflowOperation<'c>> for Operation<'c>

source§

fn from(operation: USubWithOverflowOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<UdotIntrOperation<'c>> for Operation<'c>

source§

fn from(operation: UdotIntrOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<UdotOperation<'c>> for Operation<'c>

source§

fn from(operation: UdotOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<UmmlaIntrOperation<'c>> for Operation<'c>

source§

fn from(operation: UmmlaIntrOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<UmmlaOperation<'c>> for Operation<'c>

source§

fn from(operation: UmmlaOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<UnPackOperation<'c>> for Operation<'c>

source§

fn from(operation: UnPackOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<UnaryOperation<'c>> for Operation<'c>

source§

fn from(operation: UnaryOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<UndefOperation<'c>> for Operation<'c>

source§

fn from(operation: UndefOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<UnpackOperation<'c>> for Operation<'c>

source§

fn from(operation: UnpackOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<UnreachableOperation<'c>> for Operation<'c>

source§

fn from(operation: UnreachableOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<UnrealizedConversionCastOperation<'c>> for Operation<'c>

source§

fn from(operation: UnrealizedConversionCastOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPAShrOperation<'c>> for Operation<'c>

source§

fn from(operation: VPAShrOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPAddOperation<'c>> for Operation<'c>

source§

fn from(operation: VPAddOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPAndOperation<'c>> for Operation<'c>

source§

fn from(operation: VPAndOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPFAddOperation<'c>> for Operation<'c>

source§

fn from(operation: VPFAddOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPFDivOperation<'c>> for Operation<'c>

source§

fn from(operation: VPFDivOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPFMulAddOperation<'c>> for Operation<'c>

source§

fn from(operation: VPFMulAddOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPFMulOperation<'c>> for Operation<'c>

source§

fn from(operation: VPFMulOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPFNegOperation<'c>> for Operation<'c>

source§

fn from(operation: VPFNegOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPFPExtOperation<'c>> for Operation<'c>

source§

fn from(operation: VPFPExtOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPFPToSIOperation<'c>> for Operation<'c>

source§

fn from(operation: VPFPToSIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPFPToUIOperation<'c>> for Operation<'c>

source§

fn from(operation: VPFPToUIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPFPTruncOperation<'c>> for Operation<'c>

source§

fn from(operation: VPFPTruncOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPFRemOperation<'c>> for Operation<'c>

source§

fn from(operation: VPFRemOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPFSubOperation<'c>> for Operation<'c>

source§

fn from(operation: VPFSubOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPFmaOperation<'c>> for Operation<'c>

source§

fn from(operation: VPFmaOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPIntToPtrOperation<'c>> for Operation<'c>

source§

fn from(operation: VPIntToPtrOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPLShrOperation<'c>> for Operation<'c>

source§

fn from(operation: VPLShrOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPLoadOperation<'c>> for Operation<'c>

source§

fn from(operation: VPLoadOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPMergeMinOperation<'c>> for Operation<'c>

source§

fn from(operation: VPMergeMinOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPMulOperation<'c>> for Operation<'c>

source§

fn from(operation: VPMulOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPOrOperation<'c>> for Operation<'c>

source§

fn from(operation: VPOrOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPPtrToIntOperation<'c>> for Operation<'c>

source§

fn from(operation: VPPtrToIntOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPReduceAddOperation<'c>> for Operation<'c>

source§

fn from(operation: VPReduceAddOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPReduceAndOperation<'c>> for Operation<'c>

source§

fn from(operation: VPReduceAndOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPReduceFAddOperation<'c>> for Operation<'c>

source§

fn from(operation: VPReduceFAddOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPReduceFMaxOperation<'c>> for Operation<'c>

source§

fn from(operation: VPReduceFMaxOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPReduceFMinOperation<'c>> for Operation<'c>

source§

fn from(operation: VPReduceFMinOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPReduceFMulOperation<'c>> for Operation<'c>

source§

fn from(operation: VPReduceFMulOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPReduceMulOperation<'c>> for Operation<'c>

source§

fn from(operation: VPReduceMulOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPReduceOrOperation<'c>> for Operation<'c>

source§

fn from(operation: VPReduceOrOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPReduceSMaxOperation<'c>> for Operation<'c>

source§

fn from(operation: VPReduceSMaxOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPReduceSMinOperation<'c>> for Operation<'c>

source§

fn from(operation: VPReduceSMinOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPReduceUMaxOperation<'c>> for Operation<'c>

source§

fn from(operation: VPReduceUMaxOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPReduceUMinOperation<'c>> for Operation<'c>

source§

fn from(operation: VPReduceUMinOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPReduceXorOperation<'c>> for Operation<'c>

source§

fn from(operation: VPReduceXorOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPSDivOperation<'c>> for Operation<'c>

source§

fn from(operation: VPSDivOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPSExtOperation<'c>> for Operation<'c>

source§

fn from(operation: VPSExtOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPSIToFPOperation<'c>> for Operation<'c>

source§

fn from(operation: VPSIToFPOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPSRemOperation<'c>> for Operation<'c>

source§

fn from(operation: VPSRemOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPSelectMinOperation<'c>> for Operation<'c>

source§

fn from(operation: VPSelectMinOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPShlOperation<'c>> for Operation<'c>

source§

fn from(operation: VPShlOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPStoreOperation<'c>> for Operation<'c>

source§

fn from(operation: VPStoreOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPStridedLoadOperation<'c>> for Operation<'c>

source§

fn from(operation: VPStridedLoadOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPStridedStoreOperation<'c>> for Operation<'c>

source§

fn from(operation: VPStridedStoreOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPSubOperation<'c>> for Operation<'c>

source§

fn from(operation: VPSubOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPTruncOperation<'c>> for Operation<'c>

source§

fn from(operation: VPTruncOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPUDivOperation<'c>> for Operation<'c>

source§

fn from(operation: VPUDivOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPUIToFPOperation<'c>> for Operation<'c>

source§

fn from(operation: VPUIToFPOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPURemOperation<'c>> for Operation<'c>

source§

fn from(operation: VPURemOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPXorOperation<'c>> for Operation<'c>

source§

fn from(operation: VPXorOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VPZExtOperation<'c>> for Operation<'c>

source§

fn from(operation: VPZExtOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VaCopyOperation<'c>> for Operation<'c>

source§

fn from(operation: VaCopyOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VaEndOperation<'c>> for Operation<'c>

source§

fn from(operation: VaEndOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VaStartOperation<'c>> for Operation<'c>

source§

fn from(operation: VaStartOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ValueAsShapeOperation<'c>> for Operation<'c>

source§

fn from(operation: ValueAsShapeOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ValueOfOperation<'c>> for Operation<'c>

source§

fn from(operation: ValueOfOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VarAnnotationOperation<'c>> for Operation<'c>

source§

fn from(operation: VarAnnotationOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VectorScaleOperation<'c>> for Operation<'c>

source§

fn from(operation: VectorScaleOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<VerifyOperation<'c>> for Operation<'c>

source§

fn from(operation: VerifyOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ViewOperation<'c>> for Operation<'c>

source§

fn from(operation: ViewOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<WMMAOperation<'c>> for Operation<'c>

source§

fn from(operation: WMMAOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<WaitOperation<'c>> for Operation<'c>

source§

fn from(operation: WaitOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<WarpExecuteOnLane0Operation<'c>> for Operation<'c>

source§

fn from(operation: WarpExecuteOnLane0Operation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<WhileOperation<'c>> for Operation<'c>

source§

fn from(operation: WhileOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<WhileOperation<'c>> for Operation<'c>

source§

fn from(operation: WhileOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<WithOperation<'c>> for Operation<'c>

source§

fn from(operation: WithOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<XOrIOperation<'c>> for Operation<'c>

source§

fn from(operation: XOrIOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<XOrOperation<'c>> for Operation<'c>

source§

fn from(operation: XOrOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<XOrOperation<'c>> for Operation<'c>

source§

fn from(operation: XOrOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<YieldOperation<'c>> for Operation<'c>

source§

fn from(operation: YieldOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<YieldOperation<'c>> for Operation<'c>

source§

fn from(operation: YieldOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<YieldOperation<'c>> for Operation<'c>

source§

fn from(operation: YieldOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<YieldOperation<'c>> for Operation<'c>

source§

fn from(operation: YieldOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<YieldOperation<'c>> for Operation<'c>

source§

fn from(operation: YieldOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<YieldOperation<'c>> for Operation<'c>

source§

fn from(operation: YieldOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<YieldOperation<'c>> for Operation<'c>

source§

fn from(operation: YieldOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<YieldOperation<'c>> for Operation<'c>

source§

fn from(operation: YieldOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<YieldOperation<'c>> for Operation<'c>

source§

fn from(operation: YieldOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<YieldOperation<'c>> for Operation<'c>

source§

fn from(operation: YieldOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<ZExtOperation<'c>> for Operation<'c>

source§

fn from(operation: ZExtOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<masked_compressstoreOperation<'c>> for Operation<'c>

source§

fn from(operation: masked_compressstoreOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<masked_expandloadOperation<'c>> for Operation<'c>

source§

fn from(operation: masked_expandloadOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<masked_gatherOperation<'c>> for Operation<'c>

source§

fn from(operation: masked_gatherOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<masked_scatterOperation<'c>> for Operation<'c>

source§

fn from(operation: masked_scatterOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<vector_extractOperation<'c>> for Operation<'c>

source§

fn from(operation: vector_extractOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<vector_insertOperation<'c>> for Operation<'c>

source§

fn from(operation: vector_insertOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<vector_reduce_addOperation<'c>> for Operation<'c>

source§

fn from(operation: vector_reduce_addOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<vector_reduce_andOperation<'c>> for Operation<'c>

source§

fn from(operation: vector_reduce_andOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<vector_reduce_faddOperation<'c>> for Operation<'c>

source§

fn from(operation: vector_reduce_faddOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<vector_reduce_fmaxOperation<'c>> for Operation<'c>

source§

fn from(operation: vector_reduce_fmaxOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<vector_reduce_fmaximumOperation<'c>> for Operation<'c>

source§

fn from(operation: vector_reduce_fmaximumOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<vector_reduce_fminOperation<'c>> for Operation<'c>

source§

fn from(operation: vector_reduce_fminOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<vector_reduce_fminimumOperation<'c>> for Operation<'c>

source§

fn from(operation: vector_reduce_fminimumOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<vector_reduce_fmulOperation<'c>> for Operation<'c>

source§

fn from(operation: vector_reduce_fmulOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<vector_reduce_mulOperation<'c>> for Operation<'c>

source§

fn from(operation: vector_reduce_mulOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<vector_reduce_orOperation<'c>> for Operation<'c>

source§

fn from(operation: vector_reduce_orOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<vector_reduce_smaxOperation<'c>> for Operation<'c>

source§

fn from(operation: vector_reduce_smaxOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<vector_reduce_sminOperation<'c>> for Operation<'c>

source§

fn from(operation: vector_reduce_sminOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<vector_reduce_umaxOperation<'c>> for Operation<'c>

source§

fn from(operation: vector_reduce_umaxOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<vector_reduce_uminOperation<'c>> for Operation<'c>

source§

fn from(operation: vector_reduce_uminOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<vector_reduce_xorOperation<'c>> for Operation<'c>

source§

fn from(operation: vector_reduce_xorOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> From<vscaleOperation<'c>> for Operation<'c>

source§

fn from(operation: vscaleOperation<'c>) -> Self

Converts to this type from the input type.
source§

impl<'c> PartialEq for Operation<'c>

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'c> TryFrom<Operation<'c>> for AShrOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AbsFOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AbsIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AbsOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AbsOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AddFOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AddIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AddOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AddOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AddOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AddOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AddToGroupOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AddUIExtendedOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AddrSpaceCastOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AddressOfOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AffineApplyOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AffineDelinearizeIndexOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AffineForOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AffineIfOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AffineLoadOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AffineMaxOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AffineMinOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AffineParallelOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AffinePrefetchOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AffineStoreOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AffineVectorLoadOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AffineVectorStoreOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AffineYieldOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AllReduceOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AllocOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AllocOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AllocTensorOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AllocaOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AllocaOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AllocaScopeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AllocaScopeReturnOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AlternativesOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AndIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AndOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AndOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AnnotateOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AnnotationOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AnyOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ApplyCanonicalizationPatternsOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ApplyCommonSubexpressionEliminationOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ApplyConstraintOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ApplyDeadCodeEliminationOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ApplyLoopInvariantCodeMotionOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ApplyNativeConstraintOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ApplyNativeRewriteOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ApplyPatternsOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ApplyRegisteredPassOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ApplyRewriteOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ApplyScaleOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AreEqualOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ArgMaxOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ArithmeticRightShiftOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AssertOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AssumeAlignmentOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AssumeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AssumingAllOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AssumingOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AssumingYieldOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for Atan2Operation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AtanOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AtomicCmpXchgOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AtomicRMWOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AtomicRMWOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AtomicYieldOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AttributeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AvgPool2dOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AwaitAllOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for AwaitOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for BarrierOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for BinaryOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for BitCastOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for BitReverseOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for BitcastOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for BitcastOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for BitcastOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for BitwiseAndOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for BitwiseNotOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for BitwiseOrOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for BitwiseXorOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for BlockDimOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for BlockIdOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for BoolConstantOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for BrOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for BranchOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for BranchOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for BroadcastOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for BroadcastOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ByteSwapOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CallIndirectOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CallIntrinsicOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CallOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CallOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CallOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CastOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CastOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CastOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CastOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CastSOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CastUOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CbrtOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CeilDivSIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CeilDivSOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CeilDivUIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CeilDivUOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CeilOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CeilOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CheckAttributeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CheckOperandCountOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CheckOperationNameOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CheckResultCountOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CheckTypeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CheckTypesOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ClampOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CloneOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ClzOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CmpFOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CmpIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CmpOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CollapseShapeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CollapseShapeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ComdatOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ComdatSelectorOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CompressOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CompressStoreOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ConcatOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ConcatOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ConcatenateOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CondBrOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CondBranchOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ConditionOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ConstOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ConstShapeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ConstSizeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ConstWitnessOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ConstantMaskOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ConstantOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ConstantOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ConstantOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ConstantOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ContinueOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ContractionOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for Conv2DOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for Conv3DOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ConvertOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CopyOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CopySignOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CopySignOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CopyTensorOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CoroAlignOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CoroBeginOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CoroBeginOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CoroEndOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CoroEndOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CoroFreeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CoroFreeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CoroIdOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CoroIdOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CoroResumeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CoroSaveOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CoroSaveOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CoroSizeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CoroSuspendOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CoroSuspendOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CosOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CosOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CountLeadingZerosOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CountLeadingZerosOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CountTrailingZerosOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CountTrailingZerosOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for Create2To4SpMatOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CreateAttributeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CreateCooAoSOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CreateCooOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CreateCsrOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CreateDnTensorOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CreateGroupOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CreateMaskOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CreateOperationOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CreateRangeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CreateTypeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CreateTypesOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CstrBroadcastableOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CstrEqOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CstrRequireOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CtPopOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CtPopOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for CustomOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for DbgDeclareOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for DbgLabelOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for DbgValueOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for DeallocOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for DeallocOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for DeallocOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for DeallocTensorOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for DebugPrintOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for DebugTrapOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for DepthwiseConv2DOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for DequantizeCastOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for DestroyDnTensorOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for DestroySpMatOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for DimOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for DimOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for DimOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for DivFOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for DivOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for DivOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for DivSIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for DivSOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for DivUIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for DivUOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for DmaStartOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for DmaWaitOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for EhTypeidForOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for EmptyOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for EqualOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for EraseOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for EraseOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ErfOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ErfOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ExecuteOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ExecuteRegionOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for Exp2Operation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for Exp2Operation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ExpM1Operation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ExpOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ExpOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ExpOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ExpandLoadOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ExpandOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ExpandShapeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ExpandShapeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ExpectOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ExpectWithProbabilityOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ExtFOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ExtSIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ExtUIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ExtractAlignedPointerAsIndexOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ExtractElementOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ExtractElementOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ExtractOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ExtractOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ExtractOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ExtractSliceOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ExtractStridedMetadataOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ExtractStridedSliceOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ExtractValueOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FAbsOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FAddOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FCeilOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FCmpOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FDivOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FFT2dOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FFloorOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FMAOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FMAOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FMulAddOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FMulOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FNegOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FPExtOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FPToSIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FPToSIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FPToUIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FPToUIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FPTruncOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FPowIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FRemOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FSubOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FTruncOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FenceOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FinalizeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FlatTransposeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FloorDivSIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FloorDivSOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FloorOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FloorOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FmaOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ForEachOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ForOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ForallOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ForeachMatchOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ForeachOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ForeachOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FreezeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FromElementsOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FromExtentTensorOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FromExtentsOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FshlOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FshrOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FullyConnectedOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FuncOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FuncOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FuncOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FuncOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for FunctionLibraryOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GEPOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GPUFuncOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GPUModuleOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GatherOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GatherOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GatherOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GenerateOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GenericAtomicRMWOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GetActiveLaneMaskOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GetAttributeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GetAttributeTypeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GetConsumersOfResultOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GetDefiningOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GetDefiningOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GetExtentOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GetGlobalOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GetOperandOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GetOperandsOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GetParentOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GetProducerOfOperandOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GetResultOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GetResultOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GetResultsOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GetStorageSpecifierOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GetTypeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GetUsersOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GetValueTypeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GlobalCtorsOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GlobalDtorsOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GlobalIdOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GlobalOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GlobalOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GreaterEqualOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GreaterOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for GridDimOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for HostRegisterOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for HostUnregisterOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ICmpOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for IPowIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for IdentityOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for IfOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for IfOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for InParallelOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for IncludeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for IndexCastOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for IndexCastUIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for IndexOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for IndexSwitchOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for IndexToSizeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for InlineAsmOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for InsertElementOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for InsertElementOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for InsertOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for InsertOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for InsertOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for InsertSliceOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for InsertStridedSliceOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for InsertValueOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for IntToPtrOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for InvokeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for IsBroadcastableOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for IsConstantOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for IsFPClassOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for IsNotNullOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for LDSBarrierOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for LLVMFuncOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for LShrOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for LandingpadOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for LaneIdOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for LaunchFuncOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for LaunchOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for LifetimeEndOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for LifetimeStartOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for LlrintOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for LlroundOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for LoadOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for LoadOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for LoadOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for LoadOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for Log10Operation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for Log10Operation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for Log1pOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for Log2Operation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for Log2Operation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for LogOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for LogOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for LogOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for LogicalAndOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for LogicalLeftShiftOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for LogicalNotOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for LogicalOrOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for LogicalRightShiftOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for LogicalXorOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for LrintOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for LroundOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MFMAOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MaskOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MaskedLoadOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MaskedLoadOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MaskedStoreOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MaskedStoreOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MatMulOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MatchOperationNameOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MatchParamCmpIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MatmulOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MatrixColumnMajorLoadOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MatrixColumnMajorStoreOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MatrixMultiplyOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MatrixTransposeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MaxFOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MaxNumOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MaxOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MaxPool2dOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MaxSIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MaxSOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MaxUIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MaxUOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MaximumOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MaximumOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MeetOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MemcpyInlineOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MemcpyOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MemcpyOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MemmoveOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MemorySpaceCastOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MemsetOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MemsetOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MergeHandlesOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MetadataOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MinFOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MinNumOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MinOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MinSIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MinSOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MinUIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MinUOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MinimumOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MinimumOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ModuleEndOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ModuleOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MulFOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MulIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MulOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MulOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MulOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MulOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MulSIExtendedOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MulUIExtendedOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for MultiDimReductionOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for NamedSequenceOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for NearbyintOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for NegFOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for NegateOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for NewOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for NoAliasScopeDeclOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for NullOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for NumElementsOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for NumSubgroupsOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for NumberOfEntriesOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for OperandOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for OperandsOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for OperationOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for OrIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for OrOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for OrOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for OutOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for OuterProductOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for PackOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for PackOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for PadOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for PadOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ParallelInsertSliceOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ParallelOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ParamConstantOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for PatternOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for PoisonOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for PowFOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for PowIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for PowOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for PowOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for PrefetchOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for PrefetchOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for PrintOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for PrintOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for PrintfOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for PtrAnnotationOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for PtrToIntOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for PushBackOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for QuantizeCastOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RFFT2dOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RangeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RankOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RankOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RankOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RawBufferAtomicCmpswapOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RawBufferAtomicFaddOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RawBufferAtomicFmaxOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RawBufferAtomicSmaxOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RawBufferAtomicUminOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RawBufferLoadOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RawBufferStoreOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ReallocOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ReciprocalOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RecordMatchOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ReduceAllOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ReduceAnyOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ReduceMaxOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ReduceMinOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ReduceOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ReduceOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ReduceOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ReduceProdOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ReduceReturnOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ReduceSumOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ReductionOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ReinterpretCastOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RemFOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RemSIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RemSOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RemUIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RemUOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ReplaceOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ReplaceOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ReplicateOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RescaleOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ReshapeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ReshapeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ReshapeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ReshapeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ResizeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ResultOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ResultsOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ResumeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ReturnOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ReturnOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ReturnOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ReturnOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ReturnOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ReverseOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RewriteOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RintOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RoundEvenOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RoundEvenOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RoundOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RoundOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RsqrtOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RsqrtOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RuntimeAddRefOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RuntimeAddToGroupOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RuntimeAwaitAndResumeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RuntimeAwaitOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RuntimeCreateGroupOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RuntimeCreateOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RuntimeDropRefOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RuntimeIsErrorOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RuntimeLoadOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RuntimeNumWorkerThreadsOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RuntimeResumeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RuntimeSetAvailableOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RuntimeSetErrorOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for RuntimeStoreOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SAddSatOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SAddWithOverflowOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SDDMMBufferSizeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SDDMMOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SDivOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SExtOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SIToFPOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SIToFPOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SMaxOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SMinOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SMulWithOverflowOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SMullOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SRemOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SSACopyOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SSHLSatOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SSubSatOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SSubWithOverflowOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ScalableExtractOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ScalableInsertOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ScalableMaskedAddFIntrOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ScalableMaskedAddFOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ScalableMaskedAddIIntrOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ScalableMaskedAddIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ScalableMaskedDivFIntrOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ScalableMaskedDivFOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ScalableMaskedMulFIntrOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ScalableMaskedMulFOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ScalableMaskedMulIIntrOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ScalableMaskedMulIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ScalableMaskedSDivIIntrOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ScalableMaskedSDivIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ScalableMaskedSubFIntrOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ScalableMaskedSubFOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ScalableMaskedSubIIntrOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ScalableMaskedSubIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ScalableMaskedUDivIIntrOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ScalableMaskedUDivIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ScanOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ScatterOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ScatterOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ScatterOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for Sdot2dOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SdotIntrOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SdotOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SdotOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SelectOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SelectOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SelectOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SelectOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SelectOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SequenceOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SetDefaultDeviceOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SetStorageSpecifierOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ShLIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ShRSIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ShRUIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ShapeCastOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ShapeEqOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ShapeOfOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ShlOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ShlOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ShrSOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ShrUOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ShuffleOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ShuffleOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ShuffleVectorOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SigmoidOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SinOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SinOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SizeOfOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SizeToIndexOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SliceOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SmmlaIntrOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SmmlaOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SoftmaxOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SortCooOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SortOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SpMMBufferSizeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SpMMOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SpMVBufferSizeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SpMVOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SplatOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SplatOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SplitAtOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SplitHandleOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SqrtOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SqrtOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for StackRestoreOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for StackSaveOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for StepVectorOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for StorageCastOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for StorageSpecifierInitOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for StoreOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for StoreOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for StoreOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SubFOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SubIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SubOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SubOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SubOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SubViewOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SubgroupIdOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SubgroupMmaComputeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SubgroupMmaConstantMatrixOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SubgroupMmaElementwiseOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SubgroupMmaLoadMatrixOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SubgroupMmaStoreMatrixOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SubgroupReduceOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SubgroupSizeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SwitchAttributeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SwitchOperandCountOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SwitchOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SwitchOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SwitchOperationNameOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SwitchResultCountOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SwitchTypeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for SwitchTypesOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for TableOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for TanOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for TanhOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for TanhOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for TensorStoreOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for TerminatorOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ThreadIdOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ThreadlocalAddressOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for TileOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ToCoordinatesBufferOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ToCoordinatesOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ToExtentTensorOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ToMemrefOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ToPositionsOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ToSliceOffsetOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ToSliceStrideOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ToTensorOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ToValuesOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for TransferReadOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for TransferWriteOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for TransposeConv2DOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for TransposeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for TransposeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for TransposeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for TrapOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for TruncFOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for TruncIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for TruncOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for TruncOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for TypeCastOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for TypeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for TypesOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for UAddSatOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for UAddWithOverflowOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for UBSanTrapOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for UDivOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for UIToFPOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for UIToFPOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for UMaxOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for UMinOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for UMulWithOverflowOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for URemOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for USHLSatOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for USubSatOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for USubWithOverflowOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for UdotIntrOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for UdotOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for UmmlaIntrOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for UmmlaOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for UnPackOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for UnaryOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for UndefOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for UnpackOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for UnreachableOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for UnrealizedConversionCastOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPAShrOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPAddOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPAndOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPFAddOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPFDivOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPFMulAddOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPFMulOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPFNegOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPFPExtOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPFPToSIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPFPToUIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPFPTruncOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPFRemOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPFSubOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPFmaOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPIntToPtrOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPLShrOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPLoadOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPMergeMinOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPMulOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPOrOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPPtrToIntOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPReduceAddOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPReduceAndOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPReduceFAddOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPReduceFMaxOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPReduceFMinOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPReduceFMulOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPReduceMulOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPReduceOrOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPReduceSMaxOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPReduceSMinOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPReduceUMaxOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPReduceUMinOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPReduceXorOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPSDivOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPSExtOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPSIToFPOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPSRemOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPSelectMinOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPShlOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPStoreOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPStridedLoadOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPStridedStoreOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPSubOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPTruncOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPUDivOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPUIToFPOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPURemOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPXorOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VPZExtOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VaCopyOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VaEndOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VaStartOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ValueAsShapeOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ValueOfOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VarAnnotationOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VectorScaleOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for VerifyOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ViewOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for WMMAOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for WaitOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for WarpExecuteOnLane0Operation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for WhileOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for WhileOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for WithOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for XOrIOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for XOrOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for XOrOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for YieldOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for YieldOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for YieldOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for YieldOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for YieldOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for YieldOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for YieldOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for YieldOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for YieldOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for YieldOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for ZExtOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for masked_compressstoreOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for masked_expandloadOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for masked_gatherOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for masked_scatterOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for vector_extractOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for vector_insertOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for vector_reduce_addOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for vector_reduce_andOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for vector_reduce_faddOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for vector_reduce_fmaxOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for vector_reduce_fmaximumOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for vector_reduce_fminOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for vector_reduce_fminimumOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for vector_reduce_fmulOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for vector_reduce_mulOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for vector_reduce_orOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for vector_reduce_smaxOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for vector_reduce_sminOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for vector_reduce_umaxOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for vector_reduce_uminOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for vector_reduce_xorOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> TryFrom<Operation<'c>> for vscaleOperation<'c>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(operation: Operation<'c>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'c> Eq for Operation<'c>

Auto Trait Implementations§

§

impl<'c> RefUnwindSafe for Operation<'c>

§

impl<'c> !Send for Operation<'c>

§

impl<'c> !Sync for Operation<'c>

§

impl<'c> Unpin for Operation<'c>

§

impl<'c> UnwindSafe for Operation<'c>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.