#[non_exhaustive]pub enum Action {
AssignNull(Box<Empty>),
AssignSpecificValue(Box<AssignSpecificValue>),
AssignMinValue(Box<Empty>),
AssignMaxValue(Box<Empty>),
RoundScale(Box<RoundToScale>),
ApplyHash(Box<ApplyHash>),
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
AssignNull(Box<Empty>)
Optional. Set to null
AssignSpecificValue(Box<AssignSpecificValue>)
Optional. Set to a specific value (value is converted to fit the target data type)
AssignMinValue(Box<Empty>)
Optional. Set to min_value - if integer or numeric, will use int.minvalue, etc
AssignMaxValue(Box<Empty>)
Optional. Set to max_value - if integer or numeric, will use int.maxvalue, etc
RoundScale(Box<RoundToScale>)
Optional. Allows the data to change scale
ApplyHash(Box<ApplyHash>)
Optional. Applies a hash function on the data
Trait Implementations§
impl StructuralPartialEq for Action
Auto Trait Implementations§
impl Freeze for Action
impl RefUnwindSafe for Action
impl Send for Action
impl Sync for Action
impl Unpin for Action
impl UnwindSafe for Action
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