pub struct BatchResolutionFailure {
pub raw_input: String,
pub cause: BatchResolutionCause,
}Expand description
One element of a BatchResolutionFailed error. Carries the raw input
the caller passed and the typed reason it couldn’t be resolved.
Fields§
§raw_input: StringThe string the caller passed for this slot (UUID, identifier, name, etc.).
cause: BatchResolutionCauseWhy this input couldn’t be resolved.
Trait Implementations§
Source§impl Clone for BatchResolutionFailure
impl Clone for BatchResolutionFailure
Source§fn clone(&self) -> BatchResolutionFailure
fn clone(&self) -> BatchResolutionFailure
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 moreSource§impl Debug for BatchResolutionFailure
impl Debug for BatchResolutionFailure
Auto Trait Implementations§
impl Freeze for BatchResolutionFailure
impl RefUnwindSafe for BatchResolutionFailure
impl Send for BatchResolutionFailure
impl Sync for BatchResolutionFailure
impl Unpin for BatchResolutionFailure
impl UnsafeUnpin for BatchResolutionFailure
impl UnwindSafe for BatchResolutionFailure
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