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

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

Builder for EmailAddresses instances.

See EmailAddresses::builder() for more info.

Implementations

impl<__office, __private, __other> EmailAddressesBuilder<((), __office, __private, __other)>[src]

pub fn business(
    self,
    business: Vec<String>
) -> EmailAddressesBuilder<((Option<Vec<String>>,), __office, __private, __other)>
[src]

impl<__business, __private, __other> EmailAddressesBuilder<(__business, (), __private, __other)>[src]

pub fn office(
    self,
    office: Vec<String>
) -> EmailAddressesBuilder<(__business, (Option<Vec<String>>,), __private, __other)>
[src]

impl<__business, __office, __other> EmailAddressesBuilder<(__business, __office, (), __other)>[src]

pub fn private(
    self,
    private: Vec<String>
) -> EmailAddressesBuilder<(__business, __office, (Option<Vec<String>>,), __other)>
[src]

impl<__business, __office, __private> EmailAddressesBuilder<(__business, __office, __private, ())>[src]

pub fn other(
    self,
    other: Vec<String>
) -> EmailAddressesBuilder<(__business, __office, __private, (Option<Vec<String>>,))>
[src]

impl<__business: EmailAddressesBuilder_Optional<Option<Vec<String>>>, __office: EmailAddressesBuilder_Optional<Option<Vec<String>>>, __private: EmailAddressesBuilder_Optional<Option<Vec<String>>>, __other: EmailAddressesBuilder_Optional<Option<Vec<String>>>> EmailAddressesBuilder<(__business, __office, __private, __other)>[src]

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

Finalise the builder and create its EmailAddresses instance

Trait Implementations

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

Auto Trait Implementations

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

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

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

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

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