[][src]Struct rsmt2::actlit::Actlit

pub struct Actlit { /* fields omitted */ }

An activation literal is an opaque wrapper around a usize.

Obtained by a call to Solver::get_actlit.

Implementations

impl Actlit[src]

pub fn uid(&self) -> usize[src]

Unique number of this actlit.

pub fn write<W>(&self, w: &mut W) -> SmtRes<()> where
    W: Write
[src]

Writes the actlit as an SMT-LIB 2 symbol.

Trait Implementations

impl Debug for Actlit[src]

impl Deref for Actlit[src]

type Target = usize

The resulting type after dereferencing.

impl Expr2Smt<()> for Actlit[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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.