Struct lexoffice::model::posting_categories::PostingCategoryBuilder[][src]

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

Builder for PostingCategory instances.

See PostingCategory::builder() for more info.

Implementations

impl<___type, __contact_required, __split_allowed, __group_name> PostingCategoryBuilder<((), ___type, __contact_required, __split_allowed, __group_name)>[src]

pub fn name(
    self,
    name: String
) -> PostingCategoryBuilder<((Option<String>,), ___type, __contact_required, __split_allowed, __group_name)>
[src]

impl<__name, __contact_required, __split_allowed, __group_name> PostingCategoryBuilder<(__name, (), __contact_required, __split_allowed, __group_name)>[src]

pub fn _type(
    self,
    _type: String
) -> PostingCategoryBuilder<(__name, (Option<String>,), __contact_required, __split_allowed, __group_name)>
[src]

impl<__name, ___type, __split_allowed, __group_name> PostingCategoryBuilder<(__name, ___type, (), __split_allowed, __group_name)>[src]

pub fn contact_required(
    self,
    contact_required: bool
) -> PostingCategoryBuilder<(__name, ___type, (Option<bool>,), __split_allowed, __group_name)>
[src]

impl<__name, ___type, __contact_required, __group_name> PostingCategoryBuilder<(__name, ___type, __contact_required, (), __group_name)>[src]

pub fn split_allowed(
    self,
    split_allowed: bool
) -> PostingCategoryBuilder<(__name, ___type, __contact_required, (Option<bool>,), __group_name)>
[src]

impl<__name, ___type, __contact_required, __split_allowed> PostingCategoryBuilder<(__name, ___type, __contact_required, __split_allowed, ())>[src]

pub fn group_name(
    self,
    group_name: String
) -> PostingCategoryBuilder<(__name, ___type, __contact_required, __split_allowed, (Option<String>,))>
[src]

impl<__name: PostingCategoryBuilder_Optional<Option<String>>, ___type: PostingCategoryBuilder_Optional<Option<String>>, __contact_required: PostingCategoryBuilder_Optional<Option<bool>>, __split_allowed: PostingCategoryBuilder_Optional<Option<bool>>, __group_name: PostingCategoryBuilder_Optional<Option<String>>> PostingCategoryBuilder<(__name, ___type, __contact_required, __split_allowed, __group_name)>[src]

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

Finalise the builder and create its PostingCategory instance

Trait Implementations

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

Auto Trait Implementations

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

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

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

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

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