pub struct StepEdge {
pub id: String,
pub target: String,
pub source: String,
pub style: Option<HashMap<String, String>>,
pub _type: Value,
}Expand description
§StepFlow
Connector contract represent an ant schema that takes in operators and actions to be performed on a dataset
Fields§
§id: StringName of the the schema
target: StringName of the the schema
source: StringName of the the schema
style: Option<HashMap<String, String>>Name of the the schema
_type: ValueTrait Implementations§
Source§impl<'de> Deserialize<'de> for StepEdge
impl<'de> Deserialize<'de> for StepEdge
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
impl Eq for StepEdge
impl StructuralPartialEq for StepEdge
Auto Trait Implementations§
impl Freeze for StepEdge
impl RefUnwindSafe for StepEdge
impl Send for StepEdge
impl Sync for StepEdge
impl Unpin for StepEdge
impl UnwindSafe for StepEdge
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<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