pub struct InputClause {
pub input_expression: String,
pub allowed_input_values: Option<String>,
}
Fields§
§input_expression: String
The subject of this input clause, text representation of unary tests.
allowed_input_values: Option<String>
Optional unary tests that constrain the result of input expression of this input clause.
Trait Implementations§
Source§impl Clone for InputClause
impl Clone for InputClause
Source§fn clone(&self) -> InputClause
fn clone(&self) -> InputClause
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 InputClause
impl Debug for InputClause
Source§impl From<InputClause> for InputClause
impl From<InputClause> for InputClause
Source§fn from(value: RecognizedInputClause) -> Self
fn from(value: RecognizedInputClause) -> Self
Converts to this type from the input type.
Source§impl PartialEq for InputClause
impl PartialEq for InputClause
impl Eq for InputClause
impl StructuralPartialEq for InputClause
Auto Trait Implementations§
impl Freeze for InputClause
impl RefUnwindSafe for InputClause
impl Send for InputClause
impl Sync for InputClause
impl Unpin for InputClause
impl UnwindSafe for InputClause
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.