[][src]Struct quaint::ast::Over

pub struct Over<'a> { /* fields omitted */ }

Determines the partitioning and ordering of a rowset before the associated window function is applied.

Methods

impl<'a> Over<'a>[src]

pub fn is_empty(&self) -> bool[src]

Trait Implementations

impl<'a> Clone for Over<'a>[src]

impl<'a> Debug for Over<'a>[src]

impl<'a> Default for Over<'a>[src]

impl<'a> PartialEq<Over<'a>> for Over<'a>[src]

impl<'a> StructuralPartialEq for Over<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Over<'a>

impl<'a> Send for Over<'a>

impl<'a> Sync for Over<'a>

impl<'a> Unpin for Over<'a>

impl<'a> UnwindSafe for Over<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,