pub enum FormulaCapability {
Supported,
Unsupported(Vec<CalculationIssue>),
}Expand description
Static grammar and function-surface capability for one formula.
Variants§
Supported
The formula grammar and referenced function surface are supported.
Unsupported(Vec<CalculationIssue>)
One or more capabilities required by the formula are unavailable.
Trait Implementations§
Source§impl Clone for FormulaCapability
impl Clone for FormulaCapability
Source§fn clone(&self) -> FormulaCapability
fn clone(&self) -> FormulaCapability
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FormulaCapability
impl Debug for FormulaCapability
impl Eq for FormulaCapability
Source§impl PartialEq for FormulaCapability
impl PartialEq for FormulaCapability
impl StructuralPartialEq for FormulaCapability
Auto Trait Implementations§
impl Freeze for FormulaCapability
impl RefUnwindSafe for FormulaCapability
impl Send for FormulaCapability
impl Sync for FormulaCapability
impl Unpin for FormulaCapability
impl UnsafeUnpin for FormulaCapability
impl UnwindSafe for FormulaCapability
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.