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

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

Builder for LineItems instances.

See LineItems::builder() for more info.

Implementations

impl<__name, __description, __quantity, __unit_name, __unit_price, __discount_percentage> LineItemsBuilder<((), __name, __description, __quantity, __unit_name, __unit_price, __discount_percentage)>[src]

pub fn _type(
    self,
    _type: Type
) -> LineItemsBuilder<((Option<Type>,), __name, __description, __quantity, __unit_name, __unit_price, __discount_percentage)>
[src]

impl<___type, __description, __quantity, __unit_name, __unit_price, __discount_percentage> LineItemsBuilder<(___type, (), __description, __quantity, __unit_name, __unit_price, __discount_percentage)>[src]

pub fn name(
    self,
    name: String
) -> LineItemsBuilder<(___type, (Option<String>,), __description, __quantity, __unit_name, __unit_price, __discount_percentage)>
[src]

impl<___type, __name, __quantity, __unit_name, __unit_price, __discount_percentage> LineItemsBuilder<(___type, __name, (), __quantity, __unit_name, __unit_price, __discount_percentage)>[src]

pub fn description(
    self,
    description: String
) -> LineItemsBuilder<(___type, __name, (Option<String>,), __quantity, __unit_name, __unit_price, __discount_percentage)>
[src]

impl<___type, __name, __description, __unit_name, __unit_price, __discount_percentage> LineItemsBuilder<(___type, __name, __description, (), __unit_name, __unit_price, __discount_percentage)>[src]

pub fn quantity(
    self,
    quantity: f64
) -> LineItemsBuilder<(___type, __name, __description, (Option<f64>,), __unit_name, __unit_price, __discount_percentage)>
[src]

impl<___type, __name, __description, __quantity, __unit_price, __discount_percentage> LineItemsBuilder<(___type, __name, __description, __quantity, (), __unit_price, __discount_percentage)>[src]

pub fn unit_name(
    self,
    unit_name: String
) -> LineItemsBuilder<(___type, __name, __description, __quantity, (Option<String>,), __unit_price, __discount_percentage)>
[src]

impl<___type, __name, __description, __quantity, __unit_name, __discount_percentage> LineItemsBuilder<(___type, __name, __description, __quantity, __unit_name, (), __discount_percentage)>[src]

pub fn unit_price(
    self,
    unit_price: UnitPrice
) -> LineItemsBuilder<(___type, __name, __description, __quantity, __unit_name, (Option<UnitPrice>,), __discount_percentage)>
[src]

impl<___type, __name, __description, __quantity, __unit_name, __unit_price> LineItemsBuilder<(___type, __name, __description, __quantity, __unit_name, __unit_price, ())>[src]

pub fn discount_percentage(
    self,
    discount_percentage: f64
) -> LineItemsBuilder<(___type, __name, __description, __quantity, __unit_name, __unit_price, (Option<f64>,))>
[src]

impl<___type: LineItemsBuilder_Optional<Option<Type>>, __name: LineItemsBuilder_Optional<Option<String>>, __description: LineItemsBuilder_Optional<Option<String>>, __quantity: LineItemsBuilder_Optional<Option<f64>>, __unit_name: LineItemsBuilder_Optional<Option<String>>, __unit_price: LineItemsBuilder_Optional<Option<UnitPrice>>, __discount_percentage: LineItemsBuilder_Optional<Option<f64>>> LineItemsBuilder<(___type, __name, __description, __quantity, __unit_name, __unit_price, __discount_percentage)>[src]

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

Finalise the builder and create its LineItems instance

Trait Implementations

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

Auto Trait Implementations

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

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

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

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

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