[][src]Trait flatk::ValueType

pub trait ValueType { }

A marker trait to indicate an owned collection type. This is to distinguish them from borrowed slices, which essential to resolve implementation collisions.

Implementations on Foreign Types

impl<T> ValueType for Range<T>[src]

impl<T> ValueType for RangeInclusive<T>[src]

impl<T> ValueType for RangeTo<T>[src]

impl<T> ValueType for RangeToInclusive<T>[src]

impl<S, T> ValueType for (S, T)[src]

A tuple wraps its containers, so itself is a value type and not a borrow.

impl<T> ValueType for Vec<T>[src]

Loading content...

Implementors

impl<S, I> ValueType for Chunked<S, I>[src]

impl<S, I> ValueType for Select<S, I>[src]

impl<S, I> ValueType for Subset<S, I>[src]

impl<S, N> ValueType for UniChunked<S, N>[src]

impl<S, T, I> ValueType for Sparse<S, T, I>[src]

Loading content...