pub struct SchemeInstance {
pub scheme_name: String,
pub premises: Vec<Literal>,
pub conclusion: Literal,
pub critical_questions: Vec<CriticalQuestionInstance>,
}Expand description
A scheme instantiated with concrete bindings, ready for ASPIC+ integration.
Fields§
§scheme_name: StringThe scheme this instance was created from.
premises: Vec<Literal>The resolved premise literals.
conclusion: LiteralThe resolved conclusion literal.
critical_questions: Vec<CriticalQuestionInstance>Instantiated critical questions with resolved text and counter-literals.
Trait Implementations§
Source§impl Clone for SchemeInstance
impl Clone for SchemeInstance
Source§fn clone(&self) -> SchemeInstance
fn clone(&self) -> SchemeInstance
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 moreSource§impl Debug for SchemeInstance
impl Debug for SchemeInstance
Source§impl PartialEq for SchemeInstance
impl PartialEq for SchemeInstance
impl Eq for SchemeInstance
impl StructuralPartialEq for SchemeInstance
Auto Trait Implementations§
impl Freeze for SchemeInstance
impl RefUnwindSafe for SchemeInstance
impl Send for SchemeInstance
impl Sync for SchemeInstance
impl Unpin for SchemeInstance
impl UnsafeUnpin for SchemeInstance
impl UnwindSafe for SchemeInstance
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.