Struct lexoffice::model::recurring_templates::TotalPriceBuilder[][src]

#[must_use]pub struct TotalPriceBuilder<TypedBuilderFields> { /* fields omitted */ }

Builder for TotalPrice instances.

See TotalPrice::builder() for more info.

Implementations

impl<__total_discount_absolute, __total_discount_percentage> TotalPriceBuilder<((), __total_discount_absolute, __total_discount_percentage)>[src]

pub fn currency(
    self,
    currency: Currency
) -> TotalPriceBuilder<((Option<Currency>,), __total_discount_absolute, __total_discount_percentage)>
[src]

impl<__currency, __total_discount_percentage> TotalPriceBuilder<(__currency, (), __total_discount_percentage)>[src]

pub fn total_discount_absolute(
    self,
    total_discount_absolute: f64
) -> TotalPriceBuilder<(__currency, (Option<f64>,), __total_discount_percentage)>
[src]

impl<__currency, __total_discount_absolute> TotalPriceBuilder<(__currency, __total_discount_absolute, ())>[src]

pub fn total_discount_percentage(
    self,
    total_discount_percentage: f64
) -> TotalPriceBuilder<(__currency, __total_discount_absolute, (Option<f64>,))>
[src]

impl<__currency: TotalPriceBuilder_Optional<Option<Currency>>, __total_discount_absolute: TotalPriceBuilder_Optional<Option<f64>>, __total_discount_percentage: TotalPriceBuilder_Optional<Option<f64>>> TotalPriceBuilder<(__currency, __total_discount_absolute, __total_discount_percentage)>[src]

pub fn build(self) -> TotalPrice[src]

Finalise the builder and create its TotalPrice instance

Trait Implementations

impl<TypedBuilderFields> Clone for TotalPriceBuilder<TypedBuilderFields> where
    TypedBuilderFields: Clone
[src]

Auto Trait Implementations

impl<TypedBuilderFields> RefUnwindSafe for TotalPriceBuilder<TypedBuilderFields> where
    TypedBuilderFields: RefUnwindSafe

impl<TypedBuilderFields> Send for TotalPriceBuilder<TypedBuilderFields> where
    TypedBuilderFields: Send

impl<TypedBuilderFields> Sync for TotalPriceBuilder<TypedBuilderFields> where
    TypedBuilderFields: Sync

impl<TypedBuilderFields> Unpin for TotalPriceBuilder<TypedBuilderFields> where
    TypedBuilderFields: Unpin

impl<TypedBuilderFields> UnwindSafe for TotalPriceBuilder<TypedBuilderFields> where
    TypedBuilderFields: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.