pub struct WindowOrderBy {
pub field: String,
pub direction: OrderDirection,
}Expand description
ORDER BY clause for window functions (semantic field names).
Fields§
§field: StringField name (measure, dimension, or filter)
direction: OrderDirectionSort direction
Trait Implementations§
Source§impl Clone for WindowOrderBy
impl Clone for WindowOrderBy
Source§fn clone(&self) -> WindowOrderBy
fn clone(&self) -> WindowOrderBy
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 WindowOrderBy
impl Debug for WindowOrderBy
Source§impl<'de> Deserialize<'de> for WindowOrderBy
impl<'de> Deserialize<'de> for WindowOrderBy
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 WindowOrderBy
impl PartialEq for WindowOrderBy
Source§impl Serialize for WindowOrderBy
impl Serialize for WindowOrderBy
impl StructuralPartialEq for WindowOrderBy
Auto Trait Implementations§
impl Freeze for WindowOrderBy
impl RefUnwindSafe for WindowOrderBy
impl Send for WindowOrderBy
impl Sync for WindowOrderBy
impl Unpin for WindowOrderBy
impl UnsafeUnpin for WindowOrderBy
impl UnwindSafe for WindowOrderBy
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