[][src]Struct discrete::Context

pub struct Context<T = Data>(_);

A discrete space that can model spatial operations over arbitrary states, therefore useful for context analysis.

It can be constructed by taking a N-dimensional space, for each dimension create a pair subspace and sum over the dimensions. It can also be thought of as the edges in an undirected graph, where each node is described by a N-dimensional coordinate, and all nodes are connected which differ by one axis.

Dimensions of size 2 gives the edges on a hypercube of the number of dimensions. For example, [2, 2, 2] gives edges on a cube in 3 dimensions.

Trait Implementations

impl<T> Construct for Context<T>[src]

impl Count<Vec<usize>> for Context<Data>[src]

impl<T, U> Count<Vec<U>> for Context<Of<T>> where
    T: Construct + Count<U>, 
[src]

impl ToIndex<Vec<usize>, (Vec<usize>, usize, usize)> for Context<Data>[src]

impl<T, U, V> ToIndex<Vec<U>, (Vec<V>, usize, V)> for Context<Of<T>> where
    T: Construct + Count<U> + ToIndex<U, V>, 
[src]

impl ToPos<Vec<usize>, (Vec<usize>, usize, usize)> for Context<Data>[src]

impl<T, U, V> ToPos<Vec<U>, (Vec<V>, usize, V)> for Context<Of<T>> where
    T: Construct + Count<U> + ToPos<U, V> + Zero<U, V>, 
[src]

impl Zero<Vec<usize>, (Vec<usize>, usize, usize)> for Context<Data>[src]

impl<T, U, V> Zero<Vec<U>, (Vec<V>, usize, V)> for Context<Of<T>> where
    T: Construct + Count<U> + ToPos<U, V> + Zero<U, V>, 
[src]

Auto Trait Implementations

impl<T> Send for Context<T> where
    T: Send

impl<T> Sync for Context<T> where
    T: Sync

Blanket Implementations

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.

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

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

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