pub struct PrepareFailure {
pub service: String,
pub command: Option<String>,
pub message: String,
pub log_tail: Option<String>,
}Expand description
A prepare step that failed, as neutral data the provider maps to its own fault (preserving per-provider error codes and remediation).
Fields§
§service: String§command: Option<String>§message: String§log_tail: Option<String>Trait Implementations§
Source§impl Clone for PrepareFailure
impl Clone for PrepareFailure
Source§fn clone(&self) -> PrepareFailure
fn clone(&self) -> PrepareFailure
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PrepareFailure
impl RefUnwindSafe for PrepareFailure
impl Send for PrepareFailure
impl Sync for PrepareFailure
impl Unpin for PrepareFailure
impl UnsafeUnpin for PrepareFailure
impl UnwindSafe for PrepareFailure
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