pub trait GCallTrait: GCallTraitConst {
    fn as_raw_mut_GCall(&mut self) -> *mut c_void;

    fn yield_(&mut self, output: i32) -> Result<GMat> { ... }
    fn yield_p(&mut self, output: i32) -> Result<GMatP> { ... }
    fn yield_scalar(&mut self, output: i32) -> Result<GScalar> { ... }
    fn yield_frame(&mut self, output: i32) -> Result<GFrame> { ... }
    fn kernel(&mut self) -> Result<GKernel> { ... }
    fn params(&mut self) -> Result<any> { ... }
    fn set_args(&mut self, args: Vector<GArg>) -> Result<()> { ... }
}

Required Methods

Provided Methods

Implementors