Trait tract_core::internal::IntoArcTensor

source ·
pub trait IntoArcTensor: Sized {
    // Required method
    fn into_arc_tensor(self) -> Arc<Tensor>;
}
Expand description

Convenient conversion to Arc.

Required Methods§

source

fn into_arc_tensor(self) -> Arc<Tensor>

Convert Self to a Arc.

May perform a copy

Object Safety§

This trait is not object safe.

Implementors§