pub enum ValidateQuery {
Strict,
Warn,
None,
_True,
_False,
}
Expand description
Determines how to validate the JQL query and treat the validation results. Supported values: * strict
Returns a 400 response code if any errors are found, along with a list of all errors (and warnings). * warn
Returns all errors as warnings. * none
No validation is performed. * true
Deprecated A legacy synonym for strict
. * false
Deprecated A legacy synonym for warn
. The default is strict
. Note: If the JQL is not correctly formed a 400 response code is returned, regardless of the validateQuery
value.
Variants§
Trait Implementations§
Source§impl Clone for ValidateQuery
impl Clone for ValidateQuery
Source§fn clone(&self) -> ValidateQuery
fn clone(&self) -> ValidateQuery
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 ValidateQuery
impl Debug for ValidateQuery
Source§impl<'de> Deserialize<'de> for ValidateQuery
impl<'de> Deserialize<'de> for ValidateQuery
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 Hash for ValidateQuery
impl Hash for ValidateQuery
Source§impl Ord for ValidateQuery
impl Ord for ValidateQuery
Source§fn cmp(&self, other: &ValidateQuery) -> Ordering
fn cmp(&self, other: &ValidateQuery) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ValidateQuery
impl PartialEq for ValidateQuery
Source§impl PartialOrd for ValidateQuery
impl PartialOrd for ValidateQuery
Source§impl Serialize for ValidateQuery
impl Serialize for ValidateQuery
impl Copy for ValidateQuery
impl Eq for ValidateQuery
impl StructuralPartialEq for ValidateQuery
Auto Trait Implementations§
impl Freeze for ValidateQuery
impl RefUnwindSafe for ValidateQuery
impl Send for ValidateQuery
impl Sync for ValidateQuery
impl Unpin for ValidateQuery
impl UnwindSafe for ValidateQuery
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.