pub struct WakfloPlugin {
pub name: String,
pub icon: String,
pub category: String,
pub language: PluginLanguage,
pub version: String,
pub description: String,
pub documentation: Option<String>,
pub properties: Option<HashMap<String, Value>>,
}
Expand description
§WakfloPlugin
Connector contract represent an ant schema that takes in operators and actions to be performed on a dataset
Fields§
§name: String
Name of the the schema
icon: String
Icon based on https://icon-sets.iconify.design/
category: String
Human readable identity of a category
language: PluginLanguage
Version of the plugin
version: String
Version of the plugin
description: String
Description of the the schema
documentation: Option<String>
Name of the the schema
properties: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl Clone for WakfloPlugin
impl Clone for WakfloPlugin
Source§fn clone(&self) -> WakfloPlugin
fn clone(&self) -> WakfloPlugin
Returns a duplicate of the value. Read more
1.0.0 · 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 WakfloPlugin
impl Debug for WakfloPlugin
Source§impl Default for WakfloPlugin
impl Default for WakfloPlugin
Source§fn default() -> WakfloPlugin
fn default() -> WakfloPlugin
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WakfloPlugin
impl<'de> Deserialize<'de> for WakfloPlugin
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<WakfloPlugin, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<WakfloPlugin, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for WakfloPlugin
impl PartialEq for WakfloPlugin
Source§impl Serialize for WakfloPlugin
impl Serialize for WakfloPlugin
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 Eq for WakfloPlugin
impl StructuralPartialEq for WakfloPlugin
Auto Trait Implementations§
impl Freeze for WakfloPlugin
impl RefUnwindSafe for WakfloPlugin
impl Send for WakfloPlugin
impl Sync for WakfloPlugin
impl Unpin for WakfloPlugin
impl UnwindSafe for WakfloPlugin
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