pub struct TruthTableEntry {
pub inputs: Vec<f64>,
pub output: f64,
}Expand description
One resolved row inside an Op::TruthTable. Inputs and output are
stored as f64 after symbolic constants have been looked up.
Fields§
§inputs: Vec<f64>§output: f64Trait Implementations§
Source§impl Clone for TruthTableEntry
impl Clone for TruthTableEntry
Source§fn clone(&self) -> TruthTableEntry
fn clone(&self) -> TruthTableEntry
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 TruthTableEntry
impl Debug for TruthTableEntry
Source§impl PartialEq for TruthTableEntry
impl PartialEq for TruthTableEntry
impl StructuralPartialEq for TruthTableEntry
Auto Trait Implementations§
impl Freeze for TruthTableEntry
impl RefUnwindSafe for TruthTableEntry
impl Send for TruthTableEntry
impl Sync for TruthTableEntry
impl Unpin for TruthTableEntry
impl UnsafeUnpin for TruthTableEntry
impl UnwindSafe for TruthTableEntry
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