pub struct TermSchema {
pub can_generate_zero: bool,
pub force_formula: bool,
pub operation: Option<Operation>,
}Fields§
§can_generate_zero: boolIf true, the factor can be zero.
force_formula: boolIf true, the factor will be generated with first rule array items (before “0” item).
operation: Option<Operation>Operation for the factor.
Trait Implementations§
Source§impl Clone for TermSchema
impl Clone for TermSchema
Source§fn clone(&self) -> TermSchema
fn clone(&self) -> TermSchema
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 TermSchema
impl Debug for TermSchema
impl Copy for TermSchema
Auto Trait Implementations§
impl Freeze for TermSchema
impl RefUnwindSafe for TermSchema
impl Send for TermSchema
impl Sync for TermSchema
impl Unpin for TermSchema
impl UnwindSafe for TermSchema
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