[][src]Struct nar::syntax::common::ConHead

pub struct ConHead {
    pub name: Ident,
    pub cons_ix: GI,
    pub ductive: Ductive,
    pub fields: Vec<String>,
}

Constructor information. Agda.

Fields

name: Ident

Constructor name.

cons_ix: GI

Index of the constructor.

ductive: Ductive

Records might be coinductive.

fields: Vec<String>

Field names. This allows us to project fields from a record without the TCS.

Methods

impl ConHead[src]

pub fn pseudo(name: Ident) -> Self[src]

pub fn new(name: Ident, ix: GI, ductive: Ductive, fields: Vec<String>) -> Self[src]

Trait Implementations

impl Clone for ConHead[src]

impl Debug for ConHead[src]

impl Display for ConHead[src]

impl Eq for ConHead[src]

impl PartialEq<ConHead> for ConHead[src]

impl StructuralEq for ConHead[src]

impl StructuralPartialEq for ConHead[src]

Auto Trait Implementations

impl RefUnwindSafe for ConHead

impl Send for ConHead

impl Sync for ConHead

impl Unpin for ConHead

impl UnwindSafe for ConHead

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.