pub struct JqlQueryOrderByClauseElement {
pub field: Box<JqlQueryField>,
pub direction: Option<Direction>,
}
Expand description
JqlQueryOrderByClauseElement : An element of the order-by JQL clause.
Fields§
§field: Box<JqlQueryField>
§direction: Option<Direction>
The direction in which to order the results.
Implementations§
Source§impl JqlQueryOrderByClauseElement
impl JqlQueryOrderByClauseElement
Sourcepub fn new(field: JqlQueryField) -> JqlQueryOrderByClauseElement
pub fn new(field: JqlQueryField) -> JqlQueryOrderByClauseElement
An element of the order-by JQL clause.
Trait Implementations§
Source§impl Clone for JqlQueryOrderByClauseElement
impl Clone for JqlQueryOrderByClauseElement
Source§fn clone(&self) -> JqlQueryOrderByClauseElement
fn clone(&self) -> JqlQueryOrderByClauseElement
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 JqlQueryOrderByClauseElement
impl Debug for JqlQueryOrderByClauseElement
Source§impl Default for JqlQueryOrderByClauseElement
impl Default for JqlQueryOrderByClauseElement
Source§fn default() -> JqlQueryOrderByClauseElement
fn default() -> JqlQueryOrderByClauseElement
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JqlQueryOrderByClauseElement
impl<'de> Deserialize<'de> for JqlQueryOrderByClauseElement
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 JqlQueryOrderByClauseElement
impl PartialEq for JqlQueryOrderByClauseElement
Source§fn eq(&self, other: &JqlQueryOrderByClauseElement) -> bool
fn eq(&self, other: &JqlQueryOrderByClauseElement) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for JqlQueryOrderByClauseElement
Auto Trait Implementations§
impl Freeze for JqlQueryOrderByClauseElement
impl RefUnwindSafe for JqlQueryOrderByClauseElement
impl Send for JqlQueryOrderByClauseElement
impl Sync for JqlQueryOrderByClauseElement
impl Unpin for JqlQueryOrderByClauseElement
impl UnwindSafe for JqlQueryOrderByClauseElement
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