[][src]Struct biodivine_lib_bdd::BddVariable

pub struct BddVariable(u16);

Identifies one of the variables that can appear as a decision condition in the Bdd.

Implementations

impl BddVariable[src]

pub(crate) fn to_le_bytes(&self) -> [u8; 2][src]

Convert to little endian bytes

pub(crate) fn from_le_bytes(bytes: [u8; 2]) -> BddVariable[src]

Read from little endian byte representation

Trait Implementations

impl Clone for BddVariable[src]

impl Copy for BddVariable[src]

impl Debug for BddVariable[src]

impl Display for BddVariable[src]

impl Eq for BddVariable[src]

impl Hash for BddVariable[src]

impl Index<BddVariable> for BddValuation[src]

Allow indexing of BddValuation using BddVariables.

type Output = bool

The returned type after indexing.

impl Ord for BddVariable[src]

impl PartialEq<BddVariable> for BddVariable[src]

impl PartialOrd<BddVariable> for BddVariable[src]

impl StructuralEq for BddVariable[src]

impl StructuralPartialEq for BddVariable[src]

Auto Trait Implementations

impl RefUnwindSafe for BddVariable

impl Send for BddVariable

impl Sync for BddVariable

impl Unpin for BddVariable

impl UnwindSafe for BddVariable

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> From<T> for T[src]

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

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, 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.