pub struct JqlQueryClauseOperand {
pub values: Vec<JqlQueryUnitaryOperand>,
pub value: String,
pub function: String,
pub arguments: Vec<String>,
pub keyword: Keyword,
}
Expand description
JqlQueryClauseOperand : Details of an operand in a JQL clause.
Fields§
§values: Vec<JqlQueryUnitaryOperand>
The list of operand values.
value: String
The operand value.
function: String
The name of the function.
arguments: Vec<String>
The list of function arguments.
keyword: Keyword
The keyword that is the operand value.
Implementations§
Source§impl JqlQueryClauseOperand
impl JqlQueryClauseOperand
Sourcepub fn new(
values: Vec<JqlQueryUnitaryOperand>,
value: String,
function: String,
arguments: Vec<String>,
keyword: Keyword,
) -> JqlQueryClauseOperand
pub fn new( values: Vec<JqlQueryUnitaryOperand>, value: String, function: String, arguments: Vec<String>, keyword: Keyword, ) -> JqlQueryClauseOperand
Details of an operand in a JQL clause.
Trait Implementations§
Source§impl Clone for JqlQueryClauseOperand
impl Clone for JqlQueryClauseOperand
Source§fn clone(&self) -> JqlQueryClauseOperand
fn clone(&self) -> JqlQueryClauseOperand
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 JqlQueryClauseOperand
impl Debug for JqlQueryClauseOperand
Source§impl Default for JqlQueryClauseOperand
impl Default for JqlQueryClauseOperand
Source§fn default() -> JqlQueryClauseOperand
fn default() -> JqlQueryClauseOperand
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JqlQueryClauseOperand
impl<'de> Deserialize<'de> for JqlQueryClauseOperand
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 JqlQueryClauseOperand
impl PartialEq for JqlQueryClauseOperand
Source§impl Serialize for JqlQueryClauseOperand
impl Serialize for JqlQueryClauseOperand
impl StructuralPartialEq for JqlQueryClauseOperand
Auto Trait Implementations§
impl Freeze for JqlQueryClauseOperand
impl RefUnwindSafe for JqlQueryClauseOperand
impl Send for JqlQueryClauseOperand
impl Sync for JqlQueryClauseOperand
impl Unpin for JqlQueryClauseOperand
impl UnwindSafe for JqlQueryClauseOperand
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