pub enum Function {
Map(StepInvocationWrapperV0_5_0),
Filter(StepInvocationWrapperV0_5_0),
FilterMap(StepInvocationWrapperV0_5_0),
FlatMap(StepInvocationWrapperV0_5_0),
AssignKey(StepInvocationWrapperV0_5_0),
AssignTimestamp(StepInvocationWrapperV0_5_0),
UpdateState(StepInvocationWrapperV0_5_0),
WindowAggregate(StepInvocationWrapperV0_5_0),
}
Expand description
All functions that can be used in the package
Variants§
Map(StepInvocationWrapperV0_5_0)
Filter(StepInvocationWrapperV0_5_0)
FilterMap(StepInvocationWrapperV0_5_0)
FlatMap(StepInvocationWrapperV0_5_0)
AssignKey(StepInvocationWrapperV0_5_0)
AssignTimestamp(StepInvocationWrapperV0_5_0)
UpdateState(StepInvocationWrapperV0_5_0)
WindowAggregate(StepInvocationWrapperV0_5_0)
Implementations§
Source§impl Function
impl Function
pub fn name(&self) -> Option<&str>
pub fn extra_deps(&self) -> Vec<Dependency>
pub fn inner(&self) -> &StepInvocationWrapperV0_5_0
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Function
impl<'de> Deserialize<'de> for Function
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 JsonSchema for Function
impl JsonSchema for Function
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moreAuto Trait Implementations§
impl Freeze for Function
impl RefUnwindSafe for Function
impl Send for Function
impl Sync for Function
impl Unpin for Function
impl UnwindSafe for Function
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