Struct quaigh::network::Signal

source ·
pub struct Signal { /* private fields */ }
Expand description

Representation of a signal (a boolean variable or its complement)

May be 0, 1, x or !x. Design inputs and constants get a special representation.

Implementations§

source§

impl Signal

source

pub fn zero() -> Signal

Constant zero signal

source

pub fn one() -> Signal

Constant one signal

source

pub fn from_var(v: u32) -> Signal

Create a signal from a variable index

source

pub fn from_input(v: u32) -> Signal

Create a signal from a design input index

source

pub fn var(&self) -> u32

Obtain the variable index associated with the signal

source

pub fn input(&self) -> u32

Obtain the design input index associated with the signal

source

pub fn ind(&self) -> u32

Obtain the internal index associated with the signal: 0 for a constant, otherwise var() + 1

source

pub fn is_constant(&self) -> bool

Returns true if the signal represents a constant

source

pub fn is_input(&self) -> bool

Returns true if the signal represents a design input

source

pub fn is_var(&self) -> bool

Returns true if the signal represents an internal variable

source

pub fn is_inverted(&self) -> bool

Returns true if the signal is implicitly inverted

False for inputs, variables and zero. True for their complement and for one.

source

pub fn raw(&self) -> u32

Return the internal representation of the signal

Trait Implementations§

source§

impl BitXor<&bool> for &Signal

§

type Output = Signal

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: &bool) -> Self::Output

Performs the ^ operation. Read more
source§

impl BitXor<&bool> for Signal

§

type Output = Signal

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: &bool) -> Self::Output

Performs the ^ operation. Read more
source§

impl BitXor<bool> for &Signal

§

type Output = Signal

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: bool) -> Self::Output

Performs the ^ operation. Read more
source§

impl BitXor<bool> for Signal

§

type Output = Signal

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: bool) -> Self::Output

Performs the ^ operation. Read more
source§

impl BitXorAssign<bool> for Signal

source§

fn bitxor_assign(&mut self, rhs: bool)

Performs the ^= operation. Read more
source§

impl Clone for Signal

source§

fn clone(&self) -> Signal

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Signal

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Signal

source§

fn default() -> Signal

Returns the “default value” for a type. Read more
source§

impl Display for Signal

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<bool> for Signal

source§

fn from(b: bool) -> Signal

Converts to this type from the input type.
source§

impl Hash for Signal

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Not for &Signal

§

type Output = Signal

The resulting type after applying the ! operator.
source§

fn not(self) -> Signal

Performs the unary ! operation. Read more
source§

impl Not for Signal

§

type Output = Signal

The resulting type after applying the ! operator.
source§

fn not(self) -> Signal

Performs the unary ! operation. Read more
source§

impl Ord for Signal

source§

fn cmp(&self, other: &Signal) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for Signal

source§

fn eq(&self, other: &Signal) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for Signal

source§

fn partial_cmp(&self, other: &Signal) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Copy for Signal

source§

impl Eq for Signal

source§

impl StructuralEq for Signal

source§

impl StructuralPartialEq for Signal

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

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

§

fn vzip(self) -> V