pub struct JqlQueryField {
pub name: String,
pub property: Option<Vec<JqlQueryFieldEntityProperty>>,
}
Expand description
JqlQueryField : A field used in a JQL query. See Advanced searching - fields reference for more information about fields in JQL queries.
Fields§
§name: String
The name of the field.
property: Option<Vec<JqlQueryFieldEntityProperty>>
When the field refers to a value in an entity property, details of the entity property value.
Implementations§
Source§impl JqlQueryField
impl JqlQueryField
Sourcepub fn new(name: String) -> JqlQueryField
pub fn new(name: String) -> JqlQueryField
A field used in a JQL query. See Advanced searching - fields reference for more information about fields in JQL queries.
Trait Implementations§
Source§impl Clone for JqlQueryField
impl Clone for JqlQueryField
Source§fn clone(&self) -> JqlQueryField
fn clone(&self) -> JqlQueryField
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 JqlQueryField
impl Debug for JqlQueryField
Source§impl Default for JqlQueryField
impl Default for JqlQueryField
Source§fn default() -> JqlQueryField
fn default() -> JqlQueryField
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JqlQueryField
impl<'de> Deserialize<'de> for JqlQueryField
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 JqlQueryField
impl PartialEq for JqlQueryField
Source§impl Serialize for JqlQueryField
impl Serialize for JqlQueryField
impl StructuralPartialEq for JqlQueryField
Auto Trait Implementations§
impl Freeze for JqlQueryField
impl RefUnwindSafe for JqlQueryField
impl Send for JqlQueryField
impl Sync for JqlQueryField
impl Unpin for JqlQueryField
impl UnwindSafe for JqlQueryField
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