RawPoint

Trait RawPoint 

Source
pub trait RawPoint {
    type Key;
    type Value;
}

Required Associated Types§

Implementations on Foreign Types§

Source§

impl<T> RawPoint for &T
where T: RawSpace,

Source§

type Key = <T as RawSpace>::Key

Source§

type Value = <T as RawSpace>::Value

Source§

impl<T> RawPoint for &mut T
where T: RawSpace,

Source§

type Key = <T as RawSpace>::Key

Source§

type Value = <T as RawSpace>::Value

Source§

impl<T> RawPoint for [T]

Source§

impl<T> RawPoint for Vec<T>

Implementors§