[][src]Struct spaces::PairSpace

pub struct PairSpace<D1, D2>(pub D1, pub D2);

2-dimensional heterogeneous space.

Methods

impl<D1, D2> PairSpace<D1, D2>[src]

pub fn new(d1: D1, d2: D2) -> Self[src]

impl PairSpace<Interval, Interval>[src]

pub fn equipartitioned(
    self,
    density: usize
) -> PairSpace<Equipartition, Equipartition>
[src]

Trait Implementations

impl<D1: Space, D2: Space> Space for PairSpace<D1, D2>[src]

type Value = (D1::Value, D2::Value)

The data representation of the space.

impl<D1, X1, D2, X2> Surjection<(X1, X2), (<D1 as Space>::Value, <D2 as Space>::Value)> for PairSpace<D1, D2> where
    D1: Space + Surjection<X1, <D1 as Space>::Value>,
    D2: Space + Surjection<X2, <D2 as Space>::Value>, 
[src]

impl<D1: Union, D2: Union> Union<PairSpace<D1, D2>> for PairSpace<D1, D2>[src]

fn union_many(self, other_spaces: &[S]) -> Self where
    Self: Sized
[src]

Return the smallest space enclosing self and all other_spaces of type Self.

impl<D1: Intersection, D2: Intersection> Intersection<PairSpace<D1, D2>> for PairSpace<D1, D2>[src]

fn intersect_many(self, other_spaces: &[S]) -> Self where
    Self: Sized
[src]

Return the smallest space enclosing self and all other_spaces of type Self.

impl<D1: Clone, D2: Clone> Clone for PairSpace<D1, D2>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<D1, D2> From<(D1, D2)> for PairSpace<D1, D2>[src]

impl<D1: Copy, D2: Copy> Copy for PairSpace<D1, D2>[src]

impl<D1: Debug, D2: Debug> Debug for PairSpace<D1, D2>[src]

impl<D1: Space + Display, D2: Space + Display> Display for PairSpace<D1, D2>[src]

Auto Trait Implementations

impl<D1, D2> Send for PairSpace<D1, D2> where
    D1: Send,
    D2: Send

impl<D1, D2> Unpin for PairSpace<D1, D2> where
    D1: Unpin,
    D2: Unpin

impl<D1, D2> Sync for PairSpace<D1, D2> where
    D1: Sync,
    D2: Sync

impl<D1, D2> RefUnwindSafe for PairSpace<D1, D2> where
    D1: RefUnwindSafe,
    D2: RefUnwindSafe

impl<D1, D2> UnwindSafe for PairSpace<D1, D2> where
    D1: UnwindSafe,
    D2: UnwindSafe

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

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

impl<T> ToString for T where
    T: Display + ?Sized
[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]