Trait FilledVox

Source
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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§