pub struct FormulaDetail {
pub has_now_formula: Option<bool>,
pub has_today_formula: Option<bool>,
pub has_user_formula: Option<bool>,
pub is_volatile: Option<bool>,
pub valid: bool,
}
Expand description
Detailed information about a formula.
JSON schema
{
"description": "Detailed information about a formula.",
"type": "object",
"required": [
"valid"
],
"properties": {
"hasNowFormula": {
"description": "Returns whether or not the given formula has a
Now() formula within it.",
"examples": [
false
],
"type": "boolean"
},
"hasTodayFormula": {
"description": "Returns whether or not the given formula has a
Today() formula within it.",
"examples": [
false
],
"type": "boolean"
},
"hasUserFormula": {
"description": "Returns whether or not the given formula has a
User() formula within it.",
"examples": [
false
],
"type": "boolean"
},
"isVolatile": {
"description": "Returns whether or not the given formula can return
different results in different contexts (for example, for different
users).\n",
"examples": [
false
],
"type": "boolean"
},
"valid": {
"description": "Returns whether or not the given formula is
valid.",
"examples": [
true
],
"type": "boolean"
}
},
"additionalProperties": false,
"x-schema-name": "FormulaDetail"
}
Fields§
§has_now_formula: Option<bool>
Returns whether or not the given formula has a Now() formula within it.
has_today_formula: Option<bool>
Returns whether or not the given formula has a Today() formula within it.
has_user_formula: Option<bool>
Returns whether or not the given formula has a User() formula within it.
is_volatile: Option<bool>
Returns whether or not the given formula can return different results in different contexts (for example, for different users).
valid: bool
Returns whether or not the given formula is valid.
Trait Implementations§
Source§impl Clone for FormulaDetail
impl Clone for FormulaDetail
Source§fn clone(&self) -> FormulaDetail
fn clone(&self) -> FormulaDetail
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 FormulaDetail
impl Debug for FormulaDetail
Source§impl<'de> Deserialize<'de> for FormulaDetail
impl<'de> Deserialize<'de> for FormulaDetail
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&FormulaDetail> for FormulaDetail
impl From<&FormulaDetail> for FormulaDetail
Source§fn from(value: &FormulaDetail) -> Self
fn from(value: &FormulaDetail) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FormulaDetail
impl RefUnwindSafe for FormulaDetail
impl Send for FormulaDetail
impl Sync for FormulaDetail
impl Unpin for FormulaDetail
impl UnwindSafe for FormulaDetail
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