pub struct KeywordOperand {
pub keyword: Keyword,
}
Expand description
KeywordOperand : An operand that is a JQL keyword. See Advanced searching - keywords reference for more information about operand keywords.
Fields§
§keyword: Keyword
The keyword that is the operand value.
Implementations§
Source§impl KeywordOperand
impl KeywordOperand
Sourcepub fn new(keyword: Keyword) -> KeywordOperand
pub fn new(keyword: Keyword) -> KeywordOperand
An operand that is a JQL keyword. See Advanced searching - keywords reference for more information about operand keywords.
Trait Implementations§
Source§impl Clone for KeywordOperand
impl Clone for KeywordOperand
Source§fn clone(&self) -> KeywordOperand
fn clone(&self) -> KeywordOperand
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 KeywordOperand
impl Debug for KeywordOperand
Source§impl<'de> Deserialize<'de> for KeywordOperand
impl<'de> Deserialize<'de> for KeywordOperand
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 KeywordOperand
impl PartialEq for KeywordOperand
Source§impl Serialize for KeywordOperand
impl Serialize for KeywordOperand
impl StructuralPartialEq for KeywordOperand
Auto Trait Implementations§
impl Freeze for KeywordOperand
impl RefUnwindSafe for KeywordOperand
impl Send for KeywordOperand
impl Sync for KeywordOperand
impl Unpin for KeywordOperand
impl UnwindSafe for KeywordOperand
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