Struct lexoffice::model::contacts::CompanyBuilder[][src]

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

Builder for Company instances.

See Company::builder() for more info.

Implementations

impl<__name, __tax_number, __vat_registration_id, __contact_persons> CompanyBuilder<((), __name, __tax_number, __vat_registration_id, __contact_persons)>[src]

pub fn allow_tax_free_invoices(
    self,
    allow_tax_free_invoices: bool
) -> CompanyBuilder<((Option<bool>,), __name, __tax_number, __vat_registration_id, __contact_persons)>
[src]

impl<__allow_tax_free_invoices, __tax_number, __vat_registration_id, __contact_persons> CompanyBuilder<(__allow_tax_free_invoices, (), __tax_number, __vat_registration_id, __contact_persons)>[src]

pub fn name(
    self,
    name: impl Into<String>
) -> CompanyBuilder<(__allow_tax_free_invoices, (String,), __tax_number, __vat_registration_id, __contact_persons)>
[src]

impl<__allow_tax_free_invoices, __name, __vat_registration_id, __contact_persons> CompanyBuilder<(__allow_tax_free_invoices, __name, (), __vat_registration_id, __contact_persons)>[src]

pub fn tax_number(
    self,
    tax_number: String
) -> CompanyBuilder<(__allow_tax_free_invoices, __name, (Option<String>,), __vat_registration_id, __contact_persons)>
[src]

impl<__allow_tax_free_invoices, __name, __tax_number, __contact_persons> CompanyBuilder<(__allow_tax_free_invoices, __name, __tax_number, (), __contact_persons)>[src]

pub fn vat_registration_id(
    self,
    vat_registration_id: String
) -> CompanyBuilder<(__allow_tax_free_invoices, __name, __tax_number, (Option<String>,), __contact_persons)>
[src]

impl<__allow_tax_free_invoices, __name, __tax_number, __vat_registration_id> CompanyBuilder<(__allow_tax_free_invoices, __name, __tax_number, __vat_registration_id, ())>[src]

pub fn contact_persons(
    self,
    contact_persons: Vec<CompanyContactPerson>
) -> CompanyBuilder<(__allow_tax_free_invoices, __name, __tax_number, __vat_registration_id, (Option<Vec<CompanyContactPerson>>,))>
[src]

impl<__allow_tax_free_invoices: CompanyBuilder_Optional<Option<bool>>, __tax_number: CompanyBuilder_Optional<Option<String>>, __vat_registration_id: CompanyBuilder_Optional<Option<String>>, __contact_persons: CompanyBuilder_Optional<Option<Vec<CompanyContactPerson>>>> CompanyBuilder<(__allow_tax_free_invoices, (String,), __tax_number, __vat_registration_id, __contact_persons)>[src]

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

Finalise the builder and create its Company instance

Trait Implementations

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

Auto Trait Implementations

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

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

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

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

impl<TypedBuilderFields> UnwindSafe for CompanyBuilder<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>,