#[non_exhaustive]pub enum TaskDetails {
TranslationConfigDetails(Box<TranslationConfigDetails>),
TranslationDetails(Box<TranslationDetails>),
}Expand description
The details of the task.
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.
TranslationConfigDetails(Box<TranslationConfigDetails>)
Task configuration for CW Batch/Offline SQL Translation.
TranslationDetails(Box<TranslationDetails>)
Task details for unified SQL Translation.
Trait Implementations§
Source§impl Clone for TaskDetails
impl Clone for TaskDetails
Source§fn clone(&self) -> TaskDetails
fn clone(&self) -> TaskDetails
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 TaskDetails
impl Debug for TaskDetails
Source§impl PartialEq for TaskDetails
impl PartialEq for TaskDetails
impl StructuralPartialEq for TaskDetails
Auto Trait Implementations§
impl Freeze for TaskDetails
impl RefUnwindSafe for TaskDetails
impl Send for TaskDetails
impl Sync for TaskDetails
impl Unpin for TaskDetails
impl UnwindSafe for TaskDetails
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