[][src]Struct logicsim::graph::GateIndex

#[repr(transparent)]pub struct GateIndex { /* fields omitted */ }

Represents the index of a logic gate in a super::GateGraphBuilder.

Implementations

impl GateIndex[src]

pub fn is_off(&self) -> bool[src]

Returns true if self is the index of the OFF constant.

pub fn is_on(&self) -> bool[src]

Returns true if self is the index of the ON constant.

pub fn is_const(&self) -> bool[src]

Returns true if self is ON or OFF.

Example

let mut g = GateGraphBuilder::new();

let and = g.and("and");
assert_eq!(and.is_const(), false);


assert_eq!(ON.is_const(), true);
assert_eq!(OFF.is_const(), true);

pub fn opposite_if_const(&self) -> Option<GateIndex>[src]

Returns Some(OFF) if self is ON, Some(ON) if self is off, None otherwise.

Example

let mut g = GateGraphBuilder::new();

let and = g.and("and");
assert_eq!(and.opposite_if_const(), None);


assert_eq!(ON.opposite_if_const(), Some(OFF));
assert_eq!(OFF.opposite_if_const(), Some(ON));

Trait Implementations

impl Clone for GateIndex[src]

impl Copy for GateIndex[src]

impl Debug for GateIndex[src]

impl Display for GateIndex[src]

impl Eq for GateIndex[src]

impl From<SlabIndex> for GateIndex[src]

impl Hash for GateIndex[src]

impl Into<SlabIndex> for GateIndex[src]

impl<'_> Into<SlabIndex> for &'_ GateIndex[src]

impl Ord for GateIndex[src]

impl PartialEq<GateIndex> for GateIndex[src]

impl PartialOrd<GateIndex> for GateIndex[src]

impl StructuralEq for GateIndex[src]

impl StructuralPartialEq for GateIndex[src]

Auto Trait Implementations

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<T> Conv for T

impl<T> Conv for T

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> FmtForward for T

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

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

impl<N> NodeTrait for N where
    N: Copy + Ord + Hash
[src]

impl<T> Pipe for T where
    T: ?Sized

impl<T> Pipe for T

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Tap for T

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> TryConv for T

impl<T> TryConv for T

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.