pub struct ToleranceOptions<'a> {
pub multiplier: Decimal,
pub infer_from_cost: bool,
pub defaults: &'a FxHashMap<String, Decimal>,
}Expand description
Option knobs for transaction_tolerances, mirroring the ledger options
that drive tolerance inference (tolerance_multiplier,
infer_tolerance_from_cost, inferred_tolerance_default).
Fields§
§multiplier: DecimalMultiplier applied to each amount’s quantum (beancount default 0.5).
infer_from_cost: boolWhether per-unit costs and prices feed the tolerance (accumulated,
then max’d per currency), per option "infer_tolerance_from_cost".
defaults: &'a FxHashMap<String, Decimal>Per-currency tolerance floors from option "inferred_tolerance_default";
the key "*" is a wildcard floor applied to every currency that
appears as a posting UNIT currency in the transaction (a currency
present only via cost/price inference gets no wildcard floor,
though a named per-currency default still reaches it) — behavior
inherited verbatim from the validator.
Trait Implementations§
Source§impl<'a> Clone for ToleranceOptions<'a>
impl<'a> Clone for ToleranceOptions<'a>
Source§fn clone(&self) -> ToleranceOptions<'a>
fn clone(&self) -> ToleranceOptions<'a>
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<'a> Freeze for ToleranceOptions<'a>
impl<'a> RefUnwindSafe for ToleranceOptions<'a>
impl<'a> Send for ToleranceOptions<'a>
impl<'a> Sync for ToleranceOptions<'a>
impl<'a> Unpin for ToleranceOptions<'a>
impl<'a> UnsafeUnpin for ToleranceOptions<'a>
impl<'a> UnwindSafe for ToleranceOptions<'a>
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
Source§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
Returns the layout of the type.
Source§impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
Source§unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool
unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool
Returns whether the given value has been niched. Read more
Source§fn resolve_niched(out: Place<NichedOption<T, N1>>)
fn resolve_niched(out: Place<NichedOption<T, N1>>)
Writes data to
out indicating that a T is niched.