pub struct TruthTableRow {
pub inputs: Vec<String>,
pub output: String,
}Expand description
One row of a (truth-table <op> ...) declaration: a sequence of input
tokens and the output token. See FoundationDescriptor::truth_tables.
Fields§
§inputs: Vec<String>§output: StringTrait Implementations§
Source§impl Clone for TruthTableRow
impl Clone for TruthTableRow
Source§fn clone(&self) -> TruthTableRow
fn clone(&self) -> TruthTableRow
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 TruthTableRow
impl Debug for TruthTableRow
Source§impl Default for TruthTableRow
impl Default for TruthTableRow
Source§fn default() -> TruthTableRow
fn default() -> TruthTableRow
Returns the “default value” for a type. Read more
Source§impl PartialEq for TruthTableRow
impl PartialEq for TruthTableRow
impl StructuralPartialEq for TruthTableRow
Auto Trait Implementations§
impl Freeze for TruthTableRow
impl RefUnwindSafe for TruthTableRow
impl Send for TruthTableRow
impl Sync for TruthTableRow
impl Unpin for TruthTableRow
impl UnsafeUnpin for TruthTableRow
impl UnwindSafe for TruthTableRow
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