pub struct ListOperand {
pub values: Vec<JqlQueryUnitaryOperand>,
}
Expand description
ListOperand : An operand that is a list of values.
Fields§
§values: Vec<JqlQueryUnitaryOperand>
The list of operand values.
Implementations§
Source§impl ListOperand
impl ListOperand
Sourcepub fn new(values: Vec<JqlQueryUnitaryOperand>) -> ListOperand
pub fn new(values: Vec<JqlQueryUnitaryOperand>) -> ListOperand
An operand that is a list of values.
Trait Implementations§
Source§impl Clone for ListOperand
impl Clone for ListOperand
Source§fn clone(&self) -> ListOperand
fn clone(&self) -> ListOperand
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 ListOperand
impl Debug for ListOperand
Source§impl<'de> Deserialize<'de> for ListOperand
impl<'de> Deserialize<'de> for ListOperand
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 ListOperand
impl PartialEq for ListOperand
Source§impl Serialize for ListOperand
impl Serialize for ListOperand
impl StructuralPartialEq for ListOperand
Auto Trait Implementations§
impl Freeze for ListOperand
impl RefUnwindSafe for ListOperand
impl Send for ListOperand
impl Sync for ListOperand
impl Unpin for ListOperand
impl UnwindSafe for ListOperand
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