pub struct JiraExpressionsComplexityBean {
pub steps: Box<JiraExpressionsComplexityValueBean>,
pub expensive_operations: Box<JiraExpressionsComplexityValueBean>,
pub beans: Box<JiraExpressionsComplexityValueBean>,
pub primitive_values: Box<JiraExpressionsComplexityValueBean>,
}
Fields§
§steps: Box<JiraExpressionsComplexityValueBean>
The number of steps it took to evaluate the expression, where a step is a high-level operation performed by the expression. A step is an operation such as arithmetic, accessing a property, accessing a context variable, or calling a function.
expensive_operations: Box<JiraExpressionsComplexityValueBean>
The number of expensive operations executed while evaluating the expression. Expensive operations are those that load additional data, such as entity properties, comments, or custom fields.
beans: Box<JiraExpressionsComplexityValueBean>
The number of Jira REST API beans returned in the response.
primitive_values: Box<JiraExpressionsComplexityValueBean>
The number of primitive values returned in the response.
Implementations§
Source§impl JiraExpressionsComplexityBean
impl JiraExpressionsComplexityBean
pub fn new( steps: JiraExpressionsComplexityValueBean, expensive_operations: JiraExpressionsComplexityValueBean, beans: JiraExpressionsComplexityValueBean, primitive_values: JiraExpressionsComplexityValueBean, ) -> JiraExpressionsComplexityBean
Trait Implementations§
Source§impl Clone for JiraExpressionsComplexityBean
impl Clone for JiraExpressionsComplexityBean
Source§fn clone(&self) -> JiraExpressionsComplexityBean
fn clone(&self) -> JiraExpressionsComplexityBean
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 Default for JiraExpressionsComplexityBean
impl Default for JiraExpressionsComplexityBean
Source§fn default() -> JiraExpressionsComplexityBean
fn default() -> JiraExpressionsComplexityBean
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JiraExpressionsComplexityBean
impl<'de> Deserialize<'de> for JiraExpressionsComplexityBean
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 JiraExpressionsComplexityBean
impl PartialEq for JiraExpressionsComplexityBean
Source§fn eq(&self, other: &JiraExpressionsComplexityBean) -> bool
fn eq(&self, other: &JiraExpressionsComplexityBean) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for JiraExpressionsComplexityBean
Auto Trait Implementations§
impl Freeze for JiraExpressionsComplexityBean
impl RefUnwindSafe for JiraExpressionsComplexityBean
impl Send for JiraExpressionsComplexityBean
impl Sync for JiraExpressionsComplexityBean
impl Unpin for JiraExpressionsComplexityBean
impl UnwindSafe for JiraExpressionsComplexityBean
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