Trait gluon_base::pos::Index

pub trait Index: Copy + Ord + Add<Self::Offset, Output = Self> + AddAssign<Self::Offset> + Sub<Self::Offset, Output = Self, Output = Self::Offset> + SubAssign<Self::Offset> + Sub {
    type Offset: Offset;
}
Expand description

Index types

These can be thought of as 1-dimensional points

Required Associated Types§

type Offset: Offset

Object Safety§

This trait is not object safe.

Implementors§