#[non_exhaustive]pub enum StepDetails {
PrepareStepDetails(Box<PrepareStepDetails>),
RedirectWritesStepDetails(Box<RedirectWritesStepDetails>),
}Expand description
Details about this step.
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.
PrepareStepDetails(Box<PrepareStepDetails>)
Details for the PREPARE step.
RedirectWritesStepDetails(Box<RedirectWritesStepDetails>)
Details for the REDIRECT_WRITES step.
Trait Implementations§
Source§impl Clone for StepDetails
impl Clone for StepDetails
Source§fn clone(&self) -> StepDetails
fn clone(&self) -> StepDetails
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 StepDetails
impl Debug for StepDetails
Source§impl PartialEq for StepDetails
impl PartialEq for StepDetails
impl StructuralPartialEq for StepDetails
Auto Trait Implementations§
impl Freeze for StepDetails
impl RefUnwindSafe for StepDetails
impl Send for StepDetails
impl Sync for StepDetails
impl Unpin for StepDetails
impl UnwindSafe for StepDetails
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