[−][src]Trait tract_core::model::TensorInfo
Type information about a tensor: shape, and element type, in various state of determination.
Required methods
fn to_tensor_fact(&self) -> TensorFact
Convert to TensorFact, the most accomoding variant of TensorInfo.
Methods
impl dyn TensorInfo
pub fn is<__T: TensorInfo>(&self) -> bool
Returns true if the trait object wraps an object of type __T.
pub fn downcast<__T: TensorInfo>(self: Box<Self>) -> Result<Box<__T>, Box<Self>>
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.
pub fn downcast_ref<__T: TensorInfo>(&self) -> Option<&__T>
Returns a reference to the object within the trait object if it is of type __T, or
None if it isn't.
pub fn downcast_mut<__T: TensorInfo>(&mut self) -> Option<&mut __T>
Returns a mutable reference to the object within the trait object if it is of type
__T, or None if it isn't.