pub struct JqlFunctionPrecomputationUpdateBean {
pub error: Option<String>,
pub id: String,
pub value: Option<String>,
}
Expand description
JqlFunctionPrecomputationUpdateBean : Precomputation id and its new value.
Fields§
§error: Option<String>
The error message to be displayed to the user if the given function clause is no longer valid during recalculation of the precomputation.
id: String
The id of the precomputation to update.
value: Option<String>
The new value of the precomputation.
Implementations§
Source§impl JqlFunctionPrecomputationUpdateBean
impl JqlFunctionPrecomputationUpdateBean
Sourcepub fn new(id: String) -> JqlFunctionPrecomputationUpdateBean
pub fn new(id: String) -> JqlFunctionPrecomputationUpdateBean
Precomputation id and its new value.
Trait Implementations§
Source§impl Clone for JqlFunctionPrecomputationUpdateBean
impl Clone for JqlFunctionPrecomputationUpdateBean
Source§fn clone(&self) -> JqlFunctionPrecomputationUpdateBean
fn clone(&self) -> JqlFunctionPrecomputationUpdateBean
Returns a copy 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 Default for JqlFunctionPrecomputationUpdateBean
impl Default for JqlFunctionPrecomputationUpdateBean
Source§fn default() -> JqlFunctionPrecomputationUpdateBean
fn default() -> JqlFunctionPrecomputationUpdateBean
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JqlFunctionPrecomputationUpdateBean
impl<'de> Deserialize<'de> for JqlFunctionPrecomputationUpdateBean
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 PartialEq for JqlFunctionPrecomputationUpdateBean
impl PartialEq for JqlFunctionPrecomputationUpdateBean
Source§fn eq(&self, other: &JqlFunctionPrecomputationUpdateBean) -> bool
fn eq(&self, other: &JqlFunctionPrecomputationUpdateBean) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for JqlFunctionPrecomputationUpdateBean
Auto Trait Implementations§
impl Freeze for JqlFunctionPrecomputationUpdateBean
impl RefUnwindSafe for JqlFunctionPrecomputationUpdateBean
impl Send for JqlFunctionPrecomputationUpdateBean
impl Sync for JqlFunctionPrecomputationUpdateBean
impl Unpin for JqlFunctionPrecomputationUpdateBean
impl UnwindSafe for JqlFunctionPrecomputationUpdateBean
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