pub enum AndChainAtomicFact {
AtomicFact(AtomicFact),
AndFact(AndFact),
ChainFact(ChainFact),
}Variants§
Implementations§
Source§impl AndChainAtomicFact
impl AndChainAtomicFact
pub fn get_args_from_fact(&self) -> Vec<Obj>
Source§impl AndChainAtomicFact
impl AndChainAtomicFact
pub fn to_latex_string(&self) -> String
Trait Implementations§
Source§impl Clone for AndChainAtomicFact
impl Clone for AndChainAtomicFact
Source§fn clone(&self) -> AndChainAtomicFact
fn clone(&self) -> AndChainAtomicFact
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 AndChainAtomicFact
impl Display for AndChainAtomicFact
Source§impl From<AndChainAtomicFact> for ExistOrAndChainAtomicFact
impl From<AndChainAtomicFact> for ExistOrAndChainAtomicFact
Source§fn from(f: AndChainAtomicFact) -> Self
fn from(f: AndChainAtomicFact) -> Self
Converts to this type from the input type.
Source§impl From<AndChainAtomicFact> for Fact
impl From<AndChainAtomicFact> for Fact
Source§fn from(f: AndChainAtomicFact) -> Self
fn from(f: AndChainAtomicFact) -> Self
Converts to this type from the input type.
Source§impl From<AtomicFact> for AndChainAtomicFact
impl From<AtomicFact> for AndChainAtomicFact
Source§fn from(atomic_fact: AtomicFact) -> Self
fn from(atomic_fact: AtomicFact) -> Self
Converts to this type from the input type.
Source§impl From<GreaterEqualFact> for AndChainAtomicFact
impl From<GreaterEqualFact> for AndChainAtomicFact
Source§fn from(f: GreaterEqualFact) -> Self
fn from(f: GreaterEqualFact) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AndChainAtomicFact
impl RefUnwindSafe for AndChainAtomicFact
impl !Send for AndChainAtomicFact
impl !Sync for AndChainAtomicFact
impl Unpin for AndChainAtomicFact
impl UnsafeUnpin for AndChainAtomicFact
impl UnwindSafe for AndChainAtomicFact
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