pub struct Options<'a> { /* private fields */ }
Expand description

All options read in from option pragmas, excluding those for internal processing only.

Implementations§

source§

impl<'a> Options<'a>

source

pub fn account_type_name( &self, account_type: AccountType ) -> &AccountTypeName<'_>

source

pub fn title(&self) -> &str

source

pub fn account_previous_balances(&self) -> &Subaccount<'_>

source

pub fn account_previous_earnings(&self) -> &Subaccount<'_>

source

pub fn account_previous_conversions(&self) -> &Subaccount<'_>

source

pub fn account_current_earnings(&self) -> &Subaccount<'_>

source

pub fn account_current_conversions(&self) -> &Subaccount<'_>

source

pub fn account_unrealized_gains(&self) -> &Subaccount<'_>

source

pub fn account_rounding(&self) -> Option<&Subaccount<'_>>

source

pub fn conversion_currency(&self) -> &Currency<'_>

source

pub fn inferred_tolerance_default( &self, currency: &Currency<'_> ) -> Option<Decimal>

source

pub fn inferred_tolerance_defaults( &self ) -> impl Iterator<Item = (Option<Currency<'_>>, Decimal)>

return the tolerance defaults for all currencies, with None as the ‘any’ currency

source

pub fn inferred_tolerance_multiplier(&self) -> Decimal

source

pub fn infer_tolerance_from_cost(&self) -> bool

source

pub fn documents(&self) -> impl Iterator<Item = &PathBuf>

source

pub fn operating_currency(&self) -> impl Iterator<Item = &Currency<'_>>

source

pub fn render_commas(&self) -> bool

source

pub fn booking_method(&self) -> Booking

source

pub fn plugin_processing_mode(&self) -> PluginProcessingMode

source

pub fn long_string_maxlines(&self) -> usize

Trait Implementations§

source§

impl<'a> Debug for Options<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for Options<'a>

§

impl<'a> RefUnwindSafe for Options<'a>

§

impl<'a> Send for Options<'a>

§

impl<'a> Sync for Options<'a>

§

impl<'a> Unpin for Options<'a>

§

impl<'a> UnwindSafe for Options<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> MaybeSync for T