[][src]Struct btor2tools::Btor2Line

pub struct Btor2Line<'parser> { /* fields omitted */ }

Implementations

impl<'parser> Btor2Line<'parser>[src]

pub fn id(&self) -> i64[src]

positive id (non zero)

pub fn lineno(&self) -> i64[src]

line number in original file

pub fn name(&self) -> &CStr[src]

name in ASCII: "and", "add",...

pub fn tag(&self) -> Btor2Tag[src]

same as name but encoded as enum

pub fn sort(&self) -> Btor2Sort<'_, '_>[src]

pub fn init(&self) -> i64[src]

non zero if initialized or has next

pub fn next(&self) -> i64[src]

non zero if initialized or has next

pub fn constant(&self) -> Option<&CStr>[src]

non zero for const, constd, consth

pub fn symbol(&self) -> Option<&CStr>[src]

optional for: var array state input

pub fn args(&self) -> &[i64][src]

Trait Implementations

impl<'parser> Clone for Btor2Line<'parser>[src]

impl<'parser> Debug for Btor2Line<'parser>[src]

Auto Trait Implementations

impl<'parser> RefUnwindSafe for Btor2Line<'parser>

impl<'parser> !Send for Btor2Line<'parser>

impl<'parser> !Sync for Btor2Line<'parser>

impl<'parser> Unpin for Btor2Line<'parser>

impl<'parser> UnwindSafe for Btor2Line<'parser>

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