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