pub struct WindowSpecification {
pub name: Option<String>,
pub partition_by: Vec<Expression>,
pub order_by: Vec<OrderBy>,
pub frame: Option<WindowFrame>,
}Fields§
§name: Option<String>§partition_by: Vec<Expression>§order_by: Vec<OrderBy>§frame: Option<WindowFrame>Trait Implementations§
Source§impl Clone for WindowSpecification
impl Clone for WindowSpecification
Source§fn clone(&self) -> WindowSpecification
fn clone(&self) -> WindowSpecification
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WindowSpecification
impl Debug for WindowSpecification
Source§impl Default for WindowSpecification
impl Default for WindowSpecification
Source§fn default() -> WindowSpecification
fn default() -> WindowSpecification
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WindowSpecification
impl<'de> Deserialize<'de> for WindowSpecification
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 WindowSpecification
impl PartialEq for WindowSpecification
Source§impl Serialize for WindowSpecification
impl Serialize for WindowSpecification
impl StructuralPartialEq for WindowSpecification
Auto Trait Implementations§
impl Freeze for WindowSpecification
impl RefUnwindSafe for WindowSpecification
impl Send for WindowSpecification
impl Sync for WindowSpecification
impl Unpin for WindowSpecification
impl UnsafeUnpin for WindowSpecification
impl UnwindSafe for WindowSpecification
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