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

    // Provided methods
    fn feature(&self) -> VecN<f64, 18> { ... }
    fn dot(&self, coef: VecN<f64, 18>) -> Result<f64> { ... }
    fn is_separated(&self) -> Result<bool> { ... }
}
Expand description

Required Methods§

Provided Methods§

source

fn feature(&self) -> VecN<f64, 18>

source

fn dot(&self, coef: VecN<f64, 18>) -> Result<f64>

source

fn is_separated(&self) -> Result<bool>

Implementors§