[][src]Struct onnx_pb::OperatorSetIdProto

pub struct OperatorSetIdProto {
    pub domain: String,
    pub version: i64,
}

Operator Sets

OperatorSets are uniquely identified by a (domain, opset_version) pair.

Fields

domain: String

The domain of the operator set being identified. The empty string ("") or absence of this field implies the operator set that is defined as part of the ONNX specification. This field MUST be present in this version of the IR when referring to any other operator set.

version: i64

The version of the operator set being identified. This field MUST be present in this version of the IR.

Trait Implementations

impl Clone for OperatorSetIdProto[src]

impl Debug for OperatorSetIdProto[src]

impl Default for OperatorSetIdProto[src]

impl Message for OperatorSetIdProto[src]

impl PartialEq<OperatorSetIdProto> for OperatorSetIdProto[src]

impl StructuralPartialEq for OperatorSetIdProto[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.