parry3d::partitioning

Trait IndexedData

Source
pub trait IndexedData: Copy {
    // Required methods
    fn default() -> Self;
    fn index(&self) -> usize;
}
Expand description

A data to which an index is associated.

Required Methods§

Source

fn default() -> Self

Creates a new default instance of Self.

Source

fn index(&self) -> usize

Gets the index associated to 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.

Implementations on Foreign Types§

Source§

impl IndexedData for u32

Source§

fn default() -> Self

Source§

fn index(&self) -> usize

Source§

impl IndexedData for u64

Source§

fn default() -> Self

Source§

fn index(&self) -> usize

Source§

impl IndexedData for usize

Source§

fn default() -> Self

Source§

fn index(&self) -> usize

Implementors§