pub struct JiraExpressionValidationError {
pub line: Option<i32>,
pub column: Option<i32>,
pub expression: Option<String>,
pub message: String,
pub type: Type,
}
Expand description
JiraExpressionValidationError : Details about syntax and type errors. The error details apply to the entire expression, unless the object includes: * line
and column
* expression
Fields§
§line: Option<i32>
The text line in which the error occurred.
column: Option<i32>
The text column in which the error occurred.
expression: Option<String>
The part of the expression in which the error occurred.
message: String
Details about the error.
type: Type
The error type.
Implementations§
Source§impl JiraExpressionValidationError
impl JiraExpressionValidationError
Sourcepub fn new(message: String, type: Type) -> JiraExpressionValidationError
pub fn new(message: String, type: Type) -> JiraExpressionValidationError
Details about syntax and type errors. The error details apply to the entire expression, unless the object includes: * line
and column
* expression
Trait Implementations§
Source§impl Clone for JiraExpressionValidationError
impl Clone for JiraExpressionValidationError
Source§fn clone(&self) -> JiraExpressionValidationError
fn clone(&self) -> JiraExpressionValidationError
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 JiraExpressionValidationError
impl Default for JiraExpressionValidationError
Source§fn default() -> JiraExpressionValidationError
fn default() -> JiraExpressionValidationError
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JiraExpressionValidationError
impl<'de> Deserialize<'de> for JiraExpressionValidationError
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 JiraExpressionValidationError
impl PartialEq for JiraExpressionValidationError
Source§fn eq(&self, other: &JiraExpressionValidationError) -> bool
fn eq(&self, other: &JiraExpressionValidationError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for JiraExpressionValidationError
Auto Trait Implementations§
impl Freeze for JiraExpressionValidationError
impl RefUnwindSafe for JiraExpressionValidationError
impl Send for JiraExpressionValidationError
impl Sync for JiraExpressionValidationError
impl Unpin for JiraExpressionValidationError
impl UnwindSafe for JiraExpressionValidationError
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