pub trait GKernelTraitConst {
    // Required method
    fn as_raw_GKernel(&self) -> *const c_void;

    // Provided methods
    fn name(&self) -> String { ... }
    fn tag(&self) -> String { ... }
    fn out_shapes(&self) -> Vector<GShape> { ... }
    fn in_kinds(&self) -> Vector<Detail_OpaqueKind> { ... }
    fn out_kinds(&self) -> Vector<Detail_OpaqueKind> { ... }
}
Expand description

Constant methods for crate::gapi::GKernel

Required Methods§

Provided Methods§

Implementors§