pub trait GPCTreeTraitConst: AlgorithmTraitConst {
    // Required method
    fn as_raw_GPCTree(&self) -> *const c_void;

    // Provided methods
    fn write(&self, fs: &mut FileStorage) -> Result<()> { ... }
    fn find_leaf_for_patch(&self, descr: &GPCPatchDescriptor) -> Result<u32> { ... }
    fn equals(&self, t: &GPCTree) -> Result<bool> { ... }
    fn get_descriptor_type(&self) -> Result<i32> { ... }
}
Expand description

Constant methods for crate::optflow::GPCTree

Required Methods§

Provided Methods§

Implementors§