[][src]Struct flag_algebra::common::AntiSym

pub struct AntiSym<A>(_);

Relation R such that R(x,y) = -R(y,x) and R(x,x) does not hold.

Trait Implementations

impl<A> FlatMatrix for AntiSym<A> where
    A: Neg<Output = A> + Copy
[src]

type Item = A

Type of the entries of the matrix.

type LineIter = Chain<Range<usize>, Range<usize>>

Iterator on one line of the matrix.

type IndexIter = Box<dyn Iterator<Item = (usize, usize, usize)>>

impl<A: Clone> Clone for AntiSym<A>[src]

impl<A: Eq> Eq for AntiSym<A>[src]

impl<A: Ord> Ord for AntiSym<A>[src]

impl<A: PartialEq> PartialEq<AntiSym<A>> for AntiSym<A>[src]

impl<A: PartialOrd> PartialOrd<AntiSym<A>> for AntiSym<A>[src]

impl<A: Debug> Debug for AntiSym<A>[src]

impl<A> StructuralPartialEq for AntiSym<A>[src]

impl<A> StructuralEq for AntiSym<A>[src]

impl<A> Serialize for AntiSym<A> where
    A: Serialize
[src]

impl<'de, A> Deserialize<'de> for AntiSym<A> where
    A: Deserialize<'de>, 
[src]

Auto Trait Implementations

impl<A> Send for AntiSym<A> where
    A: Send

impl<A> Sync for AntiSym<A> where
    A: Sync

impl<A> Unpin for AntiSym<A> where
    A: Unpin

impl<A> UnwindSafe for AntiSym<A> where
    A: UnwindSafe

impl<A> RefUnwindSafe for AntiSym<A> where
    A: RefUnwindSafe

Blanket Implementations

impl<S> BinRelation for S where
    S: FlatMatrix + Debug + Clone + Ord,
    <S as FlatMatrix>::Item: Enum,
    <S as FlatMatrix>::Item: Ord,
    <S as FlatMatrix>::Item: Clone,
    <S as FlatMatrix>::Item: Copy,
    <S as FlatMatrix>::Item: Debug,
    <S as FlatMatrix>::Item: Default
[src]

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

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

type Output = T

Should always be Self

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,