pub struct JqlQueryOrderByClause {
pub fields: Vec<JqlQueryOrderByClauseElement>,
}
Expand description
JqlQueryOrderByClause : Details of the order-by JQL clause.
Fields§
§fields: Vec<JqlQueryOrderByClauseElement>
The list of order-by clause fields and their ordering directives.
Implementations§
Source§impl JqlQueryOrderByClause
impl JqlQueryOrderByClause
Sourcepub fn new(fields: Vec<JqlQueryOrderByClauseElement>) -> JqlQueryOrderByClause
pub fn new(fields: Vec<JqlQueryOrderByClauseElement>) -> JqlQueryOrderByClause
Details of the order-by JQL clause.
Trait Implementations§
Source§impl Clone for JqlQueryOrderByClause
impl Clone for JqlQueryOrderByClause
Source§fn clone(&self) -> JqlQueryOrderByClause
fn clone(&self) -> JqlQueryOrderByClause
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 JqlQueryOrderByClause
impl Debug for JqlQueryOrderByClause
Source§impl Default for JqlQueryOrderByClause
impl Default for JqlQueryOrderByClause
Source§fn default() -> JqlQueryOrderByClause
fn default() -> JqlQueryOrderByClause
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JqlQueryOrderByClause
impl<'de> Deserialize<'de> for JqlQueryOrderByClause
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 JqlQueryOrderByClause
impl PartialEq for JqlQueryOrderByClause
Source§impl Serialize for JqlQueryOrderByClause
impl Serialize for JqlQueryOrderByClause
impl StructuralPartialEq for JqlQueryOrderByClause
Auto Trait Implementations§
impl Freeze for JqlQueryOrderByClause
impl RefUnwindSafe for JqlQueryOrderByClause
impl Send for JqlQueryOrderByClause
impl Sync for JqlQueryOrderByClause
impl Unpin for JqlQueryOrderByClause
impl UnwindSafe for JqlQueryOrderByClause
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