pub enum OrAndChainAtomicFact {
AtomicFact(AtomicFact),
AndFact(AndFact),
ChainFact(ChainFact),
OrFact(OrFact),
}Variants§
Implementations§
Source§impl OrAndChainAtomicFact
impl OrAndChainAtomicFact
pub fn replace_bound_identifier(self, from: &str, to: &str) -> Self
Source§impl OrAndChainAtomicFact
impl OrAndChainAtomicFact
pub fn from_ref_to_cloned_fact(&self) -> Fact
pub fn to_fact(self) -> Fact
pub fn get_args_from_fact(&self) -> Vec<Obj>
Source§impl OrAndChainAtomicFact
impl OrAndChainAtomicFact
pub fn to_latex_string(&self) -> String
Trait Implementations§
Source§impl Clone for OrAndChainAtomicFact
impl Clone for OrAndChainAtomicFact
Source§fn clone(&self) -> OrAndChainAtomicFact
fn clone(&self) -> OrAndChainAtomicFact
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Display for OrAndChainAtomicFact
impl Display for OrAndChainAtomicFact
Source§impl From<AtomicFact> for OrAndChainAtomicFact
impl From<AtomicFact> for OrAndChainAtomicFact
Source§fn from(atomic_fact: AtomicFact) -> Self
fn from(atomic_fact: AtomicFact) -> Self
Converts to this type from the input type.
Source§impl From<EqualFact> for OrAndChainAtomicFact
impl From<EqualFact> for OrAndChainAtomicFact
Source§impl From<GreaterEqualFact> for OrAndChainAtomicFact
impl From<GreaterEqualFact> for OrAndChainAtomicFact
Source§fn from(f: GreaterEqualFact) -> Self
fn from(f: GreaterEqualFact) -> Self
Converts to this type from the input type.
Source§impl From<LessFact> for OrAndChainAtomicFact
impl From<LessFact> for OrAndChainAtomicFact
Source§impl From<OrAndChainAtomicFact> for ExistBodyFact
impl From<OrAndChainAtomicFact> for ExistBodyFact
Source§fn from(fact: OrAndChainAtomicFact) -> Self
fn from(fact: OrAndChainAtomicFact) -> Self
Converts to this type from the input type.
Source§impl From<OrAndChainAtomicFact> for ExistOrAndChainAtomicFact
impl From<OrAndChainAtomicFact> for ExistOrAndChainAtomicFact
Source§fn from(f: OrAndChainAtomicFact) -> Self
fn from(f: OrAndChainAtomicFact) -> Self
Converts to this type from the input type.
Source§impl From<OrAndChainAtomicFact> for Fact
impl From<OrAndChainAtomicFact> for Fact
Source§fn from(f: OrAndChainAtomicFact) -> Self
fn from(f: OrAndChainAtomicFact) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OrAndChainAtomicFact
impl RefUnwindSafe for OrAndChainAtomicFact
impl !Send for OrAndChainAtomicFact
impl !Sync for OrAndChainAtomicFact
impl Unpin for OrAndChainAtomicFact
impl UnsafeUnpin for OrAndChainAtomicFact
impl UnwindSafe for OrAndChainAtomicFact
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more