pub struct PlanErrors {
pub errors: Arc<Vec<PlanError>>,
pub usage_reporting: UsageReporting,
}Expand description
The payload if the plan_worker invocation failed
Fields§
§errors: Arc<Vec<PlanError>>The errors the plan_worker invocation failed with
usage_reporting: UsageReportingUsage reporting related data such as the operation signature and referenced fields
Trait Implementations§
Source§impl Clone for PlanErrors
impl Clone for PlanErrors
Source§fn clone(&self) -> PlanErrors
fn clone(&self) -> PlanErrors
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 PlanErrors
impl Debug for PlanErrors
Auto Trait Implementations§
impl Freeze for PlanErrors
impl RefUnwindSafe for PlanErrors
impl Send for PlanErrors
impl Sync for PlanErrors
impl Unpin for PlanErrors
impl UnwindSafe for PlanErrors
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