pub struct TransformationRule {
pub name: String,
pub target_field: String,
pub expression: String,
pub order: u32,
pub enabled: bool,
}Expand description
Transformation rule to apply to a field
Fields§
§name: StringRule name
target_field: StringTarget field to transform
expression: StringTransformation expression
order: u32Order of execution
enabled: boolWhether this transformation is enabled
Implementations§
Trait Implementations§
Source§impl Clone for TransformationRule
impl Clone for TransformationRule
Source§fn clone(&self) -> TransformationRule
fn clone(&self) -> TransformationRule
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 TransformationRule
impl Debug for TransformationRule
Source§impl<'de> Deserialize<'de> for TransformationRule
impl<'de> Deserialize<'de> for TransformationRule
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 TransformationRule
impl RefUnwindSafe for TransformationRule
impl Send for TransformationRule
impl Sync for TransformationRule
impl Unpin for TransformationRule
impl UnsafeUnpin for TransformationRule
impl UnwindSafe for TransformationRule
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