Type Alias RangeFrameBound

Source
pub type RangeFrameBound = FrameBound<RangeFrameOffset>;

Aliased Type§

enum RangeFrameBound {
    UnboundedPreceding,
    Preceding(RangeFrameOffset),
    CurrentRow,
    Following(RangeFrameOffset),
    UnboundedFollowing,
}

Variants§

§

UnboundedPreceding

§

Preceding(RangeFrameOffset)

§

CurrentRow

§

Following(RangeFrameOffset)

§

UnboundedFollowing

Implementations§

Source§

impl RangeFrameBound

Source

fn from_protobuf( bound: &PbRangeFrameBound, order_data_type: &DataType, offset_data_type: &DataType, ) -> Result<Self>

Source

fn to_protobuf(&self) -> PbRangeFrameBound

Source§

impl RangeFrameBound