[][src]Struct btor2tools_sys::Btor2Line

#[repr(C)]pub struct Btor2Line {
    pub id: i64,
    pub lineno: i64,
    pub name: *const c_char,
    pub tag: Btor2Tag,
    pub sort: Btor2Sort,
    pub init: i64,
    pub next: i64,
    pub constant: *mut c_char,
    pub symbol: *mut c_char,
    pub nargs: u32,
    pub args: *mut i64,
}

Fields

id: i64lineno: i64name: *const c_chartag: Btor2Tagsort: Btor2Sortinit: i64next: i64constant: *mut c_charsymbol: *mut c_charnargs: u32args: *mut i64

Trait Implementations

impl Clone for Btor2Line[src]

impl Copy for Btor2Line[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> 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.