pub struct QualifyAndPriceResult {
pub eligible: bool,
pub eligibility: EligibilityOutcome,
pub price: Option<Money>,
pub relationship_errors: Vec<String>,
}Expand description
Result of a combined qualify + price evaluation.
Fields§
§eligible: bool§eligibility: EligibilityOutcome§price: Option<Money>§relationship_errors: Vec<String>Trait Implementations§
Source§impl Clone for QualifyAndPriceResult
impl Clone for QualifyAndPriceResult
Source§fn clone(&self) -> QualifyAndPriceResult
fn clone(&self) -> QualifyAndPriceResult
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 QualifyAndPriceResult
impl RefUnwindSafe for QualifyAndPriceResult
impl Send for QualifyAndPriceResult
impl Sync for QualifyAndPriceResult
impl Unpin for QualifyAndPriceResult
impl UnsafeUnpin for QualifyAndPriceResult
impl UnwindSafe for QualifyAndPriceResult
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