pub struct InputClause {
pub input_expression: String,
pub allowed_input_values: Option<String>,
}
Expand description
Represents an input clause.
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 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