Struct lexoffice::model::quotations::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, __sub_items, __optional, __alternative> LineItemsBuilder<((), __name, __description, __quantity, __unit_name, __unit_price, __discount_percentage, __sub_items, __optional, __alternative)>[src]

pub fn _type(
    self,
    _type: impl Into<Type>
) -> LineItemsBuilder<((Type,), __name, __description, __quantity, __unit_name, __unit_price, __discount_percentage, __sub_items, __optional, __alternative)>
[src]

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

pub fn name(
    self,
    name: impl Into<String>
) -> LineItemsBuilder<(___type, (String,), __description, __quantity, __unit_name, __unit_price, __discount_percentage, __sub_items, __optional, __alternative)>
[src]

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

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

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

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

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

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

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

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

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

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

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

pub fn sub_items(
    self,
    sub_items: Vec<LineItems>
) -> LineItemsBuilder<(___type, __name, __description, __quantity, __unit_name, __unit_price, __discount_percentage, (Option<Vec<LineItems>>,), __optional, __alternative)>
[src]

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

pub fn optional(
    self,
    optional: bool
) -> LineItemsBuilder<(___type, __name, __description, __quantity, __unit_name, __unit_price, __discount_percentage, __sub_items, (Option<bool>,), __alternative)>
[src]

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

pub fn alternative(
    self,
    alternative: bool
) -> LineItemsBuilder<(___type, __name, __description, __quantity, __unit_name, __unit_price, __discount_percentage, __sub_items, __optional, (Option<bool>,))>
[src]

impl<__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>>, __sub_items: LineItemsBuilder_Optional<Option<Vec<LineItems>>>, __optional: LineItemsBuilder_Optional<Option<bool>>, __alternative: LineItemsBuilder_Optional<Option<bool>>> LineItemsBuilder<((Type,), (String,), __description, __quantity, __unit_name, __unit_price, __discount_percentage, __sub_items, __optional, __alternative)>[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,