pub struct CreateContinuousAggregate {
pub name: String,
pub name_span: Span,
pub query: Select,
pub options: Vec<ContinuousAggregateOption>,
pub span: Span,
}Expand description
A Skulk-owned continuous aggregate definition carried by the SQL parser.
Alopex owns the wire representation but does not execute this statement. The generic-host behavior is added separately after every host boundary is extension-safe.
Fields§
§name: String§name_span: Span§query: Select§options: Vec<ContinuousAggregateOption>§span: SpanTrait Implementations§
Source§impl Clone for CreateContinuousAggregate
impl Clone for CreateContinuousAggregate
Source§fn clone(&self) -> CreateContinuousAggregate
fn clone(&self) -> CreateContinuousAggregate
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 CreateContinuousAggregate
impl Debug for CreateContinuousAggregate
Source§impl<'de> Deserialize<'de> for CreateContinuousAggregate
impl<'de> Deserialize<'de> for CreateContinuousAggregate
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
Auto Trait Implementations§
impl Freeze for CreateContinuousAggregate
impl RefUnwindSafe for CreateContinuousAggregate
impl Send for CreateContinuousAggregate
impl Sync for CreateContinuousAggregate
impl Unpin for CreateContinuousAggregate
impl UnsafeUnpin for CreateContinuousAggregate
impl UnwindSafe for CreateContinuousAggregate
Blanket Implementations§
impl<T> Allocation for T
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