pub trait AttrTVecType<'a>: 'a + Sized {
// Required method
fn get_attr_opt_tvec(
node: &'a NodeProto,
name: &str,
) -> TractResult<Option<TVec<Self>>>;
}Required Methods§
fn get_attr_opt_tvec( node: &'a NodeProto, name: &str, ) -> TractResult<Option<TVec<Self>>>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.