[][src]Struct spaces::product::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 partitioned(self, density: usize) -> PairSpace<Partition, Partition>[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: Enclose, D2: Enclose> Enclose<PairSpace<D1, D2>> for PairSpace<D1, D2>[src]

fn enclose_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: Copy, D2: Copy> Copy for PairSpace<D1, D2>[src]

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

default 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: Debug, D2: Debug> Debug for PairSpace<D1, D2>[src]

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

impl<'de, D1, D2> Deserialize<'de> for PairSpace<D1, D2> where
    D1: Deserialize<'de>,
    D2: Deserialize<'de>, 
[src]

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

Auto Trait Implementations

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

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

Blanket Implementations

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

type Owned = T

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]