pub struct JiraExpressionEvaluationMetaDataBean {
pub complexity: Option<Box<JiraExpressionsComplexityBean>>,
pub issues: Option<Box<IssuesMetaBean>>,
}
Fields§
§complexity: Option<Box<JiraExpressionsComplexityBean>>
Contains information about the expression complexity. For example, the number of steps it took to evaluate the expression.
issues: Option<Box<IssuesMetaBean>>
Contains information about the issues
variable in the context. For example, is the issues were loaded with JQL, information about the page will be included here.
Implementations§
Trait Implementations§
Source§impl Clone for JiraExpressionEvaluationMetaDataBean
impl Clone for JiraExpressionEvaluationMetaDataBean
Source§fn clone(&self) -> JiraExpressionEvaluationMetaDataBean
fn clone(&self) -> JiraExpressionEvaluationMetaDataBean
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 JiraExpressionEvaluationMetaDataBean
impl Default for JiraExpressionEvaluationMetaDataBean
Source§fn default() -> JiraExpressionEvaluationMetaDataBean
fn default() -> JiraExpressionEvaluationMetaDataBean
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JiraExpressionEvaluationMetaDataBean
impl<'de> Deserialize<'de> for JiraExpressionEvaluationMetaDataBean
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 JiraExpressionEvaluationMetaDataBean
impl PartialEq for JiraExpressionEvaluationMetaDataBean
Source§fn eq(&self, other: &JiraExpressionEvaluationMetaDataBean) -> bool
fn eq(&self, other: &JiraExpressionEvaluationMetaDataBean) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for JiraExpressionEvaluationMetaDataBean
Auto Trait Implementations§
impl Freeze for JiraExpressionEvaluationMetaDataBean
impl RefUnwindSafe for JiraExpressionEvaluationMetaDataBean
impl Send for JiraExpressionEvaluationMetaDataBean
impl Sync for JiraExpressionEvaluationMetaDataBean
impl Unpin for JiraExpressionEvaluationMetaDataBean
impl UnwindSafe for JiraExpressionEvaluationMetaDataBean
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