Struct v9::linkage::ColumnIndex[][src]

pub struct ColumnIndex<M: TableMarker, T: Ord> {
    pub map: BTreeMap<(T, Id<M>), ()>,
}

Fields

map: BTreeMap<(T, Id<M>), ()>

Implementations

impl<M: TableMarker, T: Ord + Clone> ColumnIndex<M, T>[src]

pub fn full_range(t: T) -> StdRange<(T, Id<M>)>

Notable traits for Range<A>

impl<A> Iterator for Range<A> where
    A: Step
type Item = A;
[src]

pub fn find<'a>(&'a self, t: T) -> impl DoubleEndedIterator<Item = Id<M>> + 'a[src]

pub fn between(low: T, high: T) -> StdRange<(T, Id<M>)>

Notable traits for Range<A>

impl<A> Iterator for Range<A> where
    A: Step
type Item = A;
[src]

pub fn range<'a>(
    &'a self,
    low: T,
    high: T
) -> impl DoubleEndedIterator<Item = Id<M>> + 'a
[src]

Trait Implementations

impl<M: TableMarker, T: Ord> Default for ColumnIndex<M, T>[src]

impl<'a, M: TableMarker, T: 'static + Send + Sync + Ord> Extract for &'a ColumnIndex<M, T>[src]

type Owned = Self

type Cleanup = ()

Default is (), which does nothing.

impl<'a, M: TableMarker, T: 'static + Send + Sync + Ord> Extract for &'a mut ColumnIndex<M, T>[src]

type Owned = Self

type Cleanup = ()

Default is (), which does nothing.

Auto Trait Implementations

impl<M, T> RefUnwindSafe for ColumnIndex<M, T> where
    T: RefUnwindSafe,
    <M as TableMarker>::RawId: RefUnwindSafe

impl<M, T> Send for ColumnIndex<M, T> where
    T: Send

impl<M, T> Sync for ColumnIndex<M, T> where
    T: Sync

impl<M, T> Unpin for ColumnIndex<M, T>

impl<M, T> UnwindSafe for ColumnIndex<M, T> where
    T: RefUnwindSafe,
    <M as TableMarker>::RawId: RefUnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<X> ForeignKey for X[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.