Struct lexoffice::model::vouchers::VoucherItemsBuilder[][src]

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

Builder for VoucherItems instances.

See VoucherItems::builder() for more info.

Implementations

impl<__tax_amount, __tax_rate_percent, __category_id> VoucherItemsBuilder<((), __tax_amount, __tax_rate_percent, __category_id)>[src]

pub fn amount(
    self,
    amount: impl Into<f64>
) -> VoucherItemsBuilder<((f64,), __tax_amount, __tax_rate_percent, __category_id)>
[src]

impl<__amount, __tax_rate_percent, __category_id> VoucherItemsBuilder<(__amount, (), __tax_rate_percent, __category_id)>[src]

pub fn tax_amount(
    self,
    tax_amount: impl Into<f64>
) -> VoucherItemsBuilder<(__amount, (f64,), __tax_rate_percent, __category_id)>
[src]

impl<__amount, __tax_amount, __category_id> VoucherItemsBuilder<(__amount, __tax_amount, (), __category_id)>[src]

pub fn tax_rate_percent(
    self,
    tax_rate_percent: impl Into<f64>
) -> VoucherItemsBuilder<(__amount, __tax_amount, (f64,), __category_id)>
[src]

impl<__amount, __tax_amount, __tax_rate_percent> VoucherItemsBuilder<(__amount, __tax_amount, __tax_rate_percent, ())>[src]

pub fn category_id(
    self,
    category_id: impl Into<Uuid>
) -> VoucherItemsBuilder<(__amount, __tax_amount, __tax_rate_percent, (Uuid,))>
[src]

impl VoucherItemsBuilder<((f64,), (f64,), (f64,), (Uuid,))>[src]

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

Finalise the builder and create its VoucherItems instance

Trait Implementations

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

Auto Trait Implementations

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

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

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

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

impl<TypedBuilderFields> UnwindSafe for VoucherItemsBuilder<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.