pub struct EvaluateJiraExpressionParams {
pub jira_expression_eval_request_bean: JiraExpressionEvalRequestBean,
pub expand: Option<String>,
}
Expand description
struct for passing parameters to the method evaluate_jira_expression
Fields§
§jira_expression_eval_request_bean: JiraExpressionEvalRequestBean
The Jira expression and the evaluation context.
expand: Option<String>
Use expand to include additional information in the response. This parameter accepts meta.complexity
that returns information about the expression complexity. For example, the number of expensive operations used by the expression and how close the expression is to reaching the complexity limit. Useful when designing and debugging your expressions.
Trait Implementations§
Source§impl Clone for EvaluateJiraExpressionParams
impl Clone for EvaluateJiraExpressionParams
Source§fn clone(&self) -> EvaluateJiraExpressionParams
fn clone(&self) -> EvaluateJiraExpressionParams
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 moreAuto Trait Implementations§
impl Freeze for EvaluateJiraExpressionParams
impl RefUnwindSafe for EvaluateJiraExpressionParams
impl Send for EvaluateJiraExpressionParams
impl Sync for EvaluateJiraExpressionParams
impl Unpin for EvaluateJiraExpressionParams
impl UnwindSafe for EvaluateJiraExpressionParams
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