pub struct DeclineReason {
pub tool: String,
pub reason: DeclineKind,
}Expand description
Why the planner left a candidate out.
Fields§
§tool: String§reason: DeclineKindTrait Implementations§
Source§impl Clone for DeclineReason
impl Clone for DeclineReason
Source§fn clone(&self) -> DeclineReason
fn clone(&self) -> DeclineReason
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 DeclineReason
impl Debug for DeclineReason
Source§impl PartialEq for DeclineReason
impl PartialEq for DeclineReason
Source§fn eq(&self, other: &DeclineReason) -> bool
fn eq(&self, other: &DeclineReason) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeclineReason
Auto Trait Implementations§
impl Freeze for DeclineReason
impl RefUnwindSafe for DeclineReason
impl Send for DeclineReason
impl Sync for DeclineReason
impl Unpin for DeclineReason
impl UnsafeUnpin for DeclineReason
impl UnwindSafe for DeclineReason
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