Trait ukanren::Atom[][src]

pub trait Atom: Debug {
    fn eq(&self, other: &dyn Atom) -> bool;
fn as_any(&self) -> &dyn Any; }
Expand description

Trait representing an atomic type.

Required methods

Compare two atomic type references for equality.

Convert this reference to an Any reference.

Implementors