pub trait FilledVox: Sized + Clone + PartialEq {
    // Required methods
    fn default_non_filled() -> Self;
    fn is_filled(&self) -> bool;

    // Provided method
    fn or(self, other: Self) -> Self { ... }
}
Expand description

A voxel.

Required Methods§

Provided Methods§

source

fn or(self, other: Self) -> Self

Object Safety§

This trait is not object safe.

Implementors§