pub struct Sick {
pub proof_format: String,
pub proof_step: Option<usize>,
pub natural_model: Vector<Literal>,
pub witness: Option<Vector<Witness>>,
}
Expand description
A SICK certificate.
Fields§
§proof_format: String
The string identifying the proof format
proof_step: Option<usize>
§natural_model: Vector<Literal>
The trail of the formula before any inference checks
witness: Option<Vector<Witness>>
The list of witnesses (none for RUP, one for each pivot for RAT)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Sick
impl<'de> Deserialize<'de> for Sick
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Sick
impl RefUnwindSafe for Sick
impl Send for Sick
impl Sync for Sick
impl Unpin for Sick
impl UnwindSafe for Sick
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