pub enum AndChainAtomicFact {
AtomicFact(AtomicFact),
AndFact(AndFact),
ChainFact(ChainFact),
}Variants§
Implementations§
Source§impl AndChainAtomicFact
impl AndChainAtomicFact
pub fn key(&self) -> String
pub fn to_fact(&self) -> Fact
pub fn to_exist_or_and_chain_atomic_fact(&self) -> ExistOrAndChainAtomicFact
Source§impl AndChainAtomicFact
impl AndChainAtomicFact
pub fn get_args_from_fact(&self) -> Vec<Obj>
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 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto 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