Trait tract_core::ops::Op

source ·
pub trait Op: Debug + DynClone + Send + Sync + 'static + Downcast + EvalOp + DynHash {
    fn name(&self) -> Cow<'_, str>;
    fn as_typed(&self) -> Option<&dyn TypedOp>;

    fn validation(&self) -> Validation { ... }
    fn same_as(&self, _other: &dyn Op) -> bool { ... }
    fn info(&self) -> TractResult<Vec<String>> { ... }
}
Expand description

A base operation

Required Methods§

Provided Methods§

The kind of accuracy check that should be performed on operation when testing them.

Compare two ops.

Short (one-line) strings giving hints on internal implementation or important configuration details to be displayed in dumps.

Implementations§

Returns true if the trait object wraps an object of type __T.

Returns a boxed object from a boxed trait object if the underlying object is of type __T. Returns the original boxed trait if it isn’t.

Returns an Rc-ed object from an Rc-ed trait object if the underlying object is of type __T. Returns the original Rc-ed trait if it isn’t.

Returns a reference to the object within the trait object if it is of type __T, or None if it isn’t.

Returns a mutable reference to the object within the trait object if it is of type __T, or None if it isn’t.

Trait Implementations§

Converts this type into a mutable reference of the (usually inferred) input type.
Converts this type into a mutable reference of the (usually inferred) input type.
Converts this type into a shared reference of the (usually inferred) input type.
Converts this type into a shared reference of the (usually inferred) input type.
Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Converts to this type from the input type.

Implementors§