pub struct TransformNodeConfig {
pub input_key: String,
pub output_key: String,
pub transform_type: TransformType,
}Expand description
Configuration for transform nodes
Fields§
§input_key: String§output_key: String§transform_type: TransformTypeTrait Implementations§
Source§impl Clone for TransformNodeConfig
impl Clone for TransformNodeConfig
Source§fn clone(&self) -> TransformNodeConfig
fn clone(&self) -> TransformNodeConfig
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 TransformNodeConfig
impl Debug for TransformNodeConfig
Source§impl<'de> Deserialize<'de> for TransformNodeConfig
impl<'de> Deserialize<'de> for TransformNodeConfig
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 TransformNodeConfig
impl RefUnwindSafe for TransformNodeConfig
impl Send for TransformNodeConfig
impl Sync for TransformNodeConfig
impl Unpin for TransformNodeConfig
impl UnwindSafe for TransformNodeConfig
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