Struct lexoffice::model::profile::CreatedBuilder[][src]

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

Builder for Created instances.

See Created::builder() for more info.

Implementations

impl<__user_name, __user_email, __date> CreatedBuilder<((), __user_name, __user_email, __date)>[src]

pub fn user_id(
    self,
    user_id: Uuid
) -> CreatedBuilder<((Option<Uuid>,), __user_name, __user_email, __date)>
[src]

impl<__user_id, __user_email, __date> CreatedBuilder<(__user_id, (), __user_email, __date)>[src]

pub fn user_name(
    self,
    user_name: String
) -> CreatedBuilder<(__user_id, (Option<String>,), __user_email, __date)>
[src]

impl<__user_id, __user_name, __date> CreatedBuilder<(__user_id, __user_name, (), __date)>[src]

pub fn user_email(
    self,
    user_email: String
) -> CreatedBuilder<(__user_id, __user_name, (Option<String>,), __date)>
[src]

impl<__user_id, __user_name, __user_email> CreatedBuilder<(__user_id, __user_name, __user_email, ())>[src]

pub fn date(
    self,
    date: String
) -> CreatedBuilder<(__user_id, __user_name, __user_email, (Option<String>,))>
[src]

impl<__user_id: CreatedBuilder_Optional<Option<Uuid>>, __user_name: CreatedBuilder_Optional<Option<String>>, __user_email: CreatedBuilder_Optional<Option<String>>, __date: CreatedBuilder_Optional<Option<String>>> CreatedBuilder<(__user_id, __user_name, __user_email, __date)>[src]

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

Finalise the builder and create its Created instance

Trait Implementations

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

Auto Trait Implementations

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

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

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

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

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