pub struct Operations {
pub name: String,
pub sources: Vec<IoRef>,
pub sinks: Vec<IoRef>,
pub transforms: Transforms,
pub post_transforms: Option<PostTransforms>,
pub states: Vec<State>,
}Fields§
§name: String§sources: Vec<IoRef>§sinks: Vec<IoRef>§transforms: Transforms§post_transforms: Option<PostTransforms>§states: Vec<State>Implementations§
Source§impl Operations
impl Operations
pub fn add_operator( &mut self, operator_type: OperatorType, operator_placement: OperatorPlacement, step_invocation: StepInvocation, ) -> Result<(), Error>
pub fn delete_operator( &mut self, operator_placement: OperatorPlacement, ) -> Result<(), Error>
pub fn import_operator_configs( &mut self, imports: &[PackageImport], packages: &[PackageDefinition], ) -> Result<(), Error>
Sourcepub fn update_inline_operators(&mut self) -> Result<(), Error>
pub fn update_inline_operators(&mut self) -> Result<(), Error>
parse each inline operator and update the operator with the correct operator type
pub fn operators(&self) -> Vec<(StepInvocation, OperatorType)>
Trait Implementations§
Source§impl Clone for Operations
impl Clone for Operations
Source§fn clone(&self) -> Operations
fn clone(&self) -> Operations
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 Operations
impl Debug for Operations
Source§impl Default for Operations
impl Default for Operations
Source§fn default() -> Operations
fn default() -> Operations
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Operations
impl<'de> Deserialize<'de> for Operations
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<Operations, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<Operations, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for Operations
impl Hash for Operations
Source§impl PartialEq for Operations
impl PartialEq for Operations
Source§fn eq(&self, other: &Operations) -> bool
fn eq(&self, other: &Operations) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for Operations
impl Serialize for Operations
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl ComponentType for Operations
impl Eq for Operations
impl Lift for Operations
impl Lower for Operations
impl StructuralPartialEq for Operations
Auto Trait Implementations§
impl Freeze for Operations
impl RefUnwindSafe for Operations
impl Send for Operations
impl Sync for Operations
impl Unpin for Operations
impl UnsafeUnpin for Operations
impl UnwindSafe for Operations
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more