pub struct JiraExpressionForAnalysis {
pub expressions: Vec<String>,
pub context_variables: Option<HashMap<String, String>>,
}
Expand description
JiraExpressionForAnalysis : Details of Jira expressions for analysis.
Fields§
§expressions: Vec<String>
The list of Jira expressions to analyse.
context_variables: Option<HashMap<String, String>>
Context variables and their types. The type checker assumes that common context variables, such as issue
or project
, are available in context and sets their type. Use this property to override the default types or provide details of new variables.
Implementations§
Source§impl JiraExpressionForAnalysis
impl JiraExpressionForAnalysis
Sourcepub fn new(expressions: Vec<String>) -> JiraExpressionForAnalysis
pub fn new(expressions: Vec<String>) -> JiraExpressionForAnalysis
Details of Jira expressions for analysis.
Trait Implementations§
Source§impl Clone for JiraExpressionForAnalysis
impl Clone for JiraExpressionForAnalysis
Source§fn clone(&self) -> JiraExpressionForAnalysis
fn clone(&self) -> JiraExpressionForAnalysis
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 JiraExpressionForAnalysis
impl Debug for JiraExpressionForAnalysis
Source§impl<'de> Deserialize<'de> for JiraExpressionForAnalysis
impl<'de> Deserialize<'de> for JiraExpressionForAnalysis
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
impl StructuralPartialEq for JiraExpressionForAnalysis
Auto Trait Implementations§
impl Freeze for JiraExpressionForAnalysis
impl RefUnwindSafe for JiraExpressionForAnalysis
impl Send for JiraExpressionForAnalysis
impl Sync for JiraExpressionForAnalysis
impl Unpin for JiraExpressionForAnalysis
impl UnwindSafe for JiraExpressionForAnalysis
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