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