pub struct FunctionOperand {
pub function: String,
pub arguments: Vec<String>,
}
Expand description
FunctionOperand : An operand that is a function. See Advanced searching - functions reference for more information about JQL functions.
Fields§
§function: String
The name of the function.
arguments: Vec<String>
The list of function arguments.
Implementations§
Source§impl FunctionOperand
impl FunctionOperand
Sourcepub fn new(function: String, arguments: Vec<String>) -> FunctionOperand
pub fn new(function: String, arguments: Vec<String>) -> FunctionOperand
An operand that is a function. See Advanced searching - functions reference for more information about JQL functions.
Trait Implementations§
Source§impl Clone for FunctionOperand
impl Clone for FunctionOperand
Source§fn clone(&self) -> FunctionOperand
fn clone(&self) -> FunctionOperand
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 FunctionOperand
impl Debug for FunctionOperand
Source§impl Default for FunctionOperand
impl Default for FunctionOperand
Source§fn default() -> FunctionOperand
fn default() -> FunctionOperand
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FunctionOperand
impl<'de> Deserialize<'de> for FunctionOperand
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 FunctionOperand
impl PartialEq for FunctionOperand
Source§impl Serialize for FunctionOperand
impl Serialize for FunctionOperand
impl StructuralPartialEq for FunctionOperand
Auto Trait Implementations§
impl Freeze for FunctionOperand
impl RefUnwindSafe for FunctionOperand
impl Send for FunctionOperand
impl Sync for FunctionOperand
impl Unpin for FunctionOperand
impl UnwindSafe for FunctionOperand
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