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

pub struct Created {
    pub user_id: Option<Uuid>,
    pub user_name: Option<String>,
    pub user_email: Option<String>,
    pub date: Option<String>,
}

Fields

user_id: Option<Uuid>

Unique id of the user who established the connection to lexoffice.

user_name: Option<String>

The user who established the connection to lexoffice.

user_email: Option<String>

The user’s email who established the connection to lexoffice.

date: Option<String>

The date when the connection was established in format yyyy-MM-ddTHH:mm:ss.SSSXXX as described in RFC 3339/ISO 8601 (e.g. 2020-02-21T00:00:00.000+01:00).

Implementations

impl Created[src]

pub fn builder() -> CreatedBuilder<((), (), (), ())>[src]

Create a builder for building Created. On the builder, call .user_id(...)(optional), .user_name(...)(optional), .user_email(...)(optional), .date(...)(optional) to set the values of the fields. Finally, call .build() to create the instance of Created.

Trait Implementations

impl Clone for Created[src]

impl Debug for Created[src]

impl<'de> Deserialize<'de> for Created[src]

impl PartialEq<Created> for Created[src]

impl Serialize for Created[src]

impl StructuralPartialEq for Created[src]

Auto Trait Implementations

impl RefUnwindSafe for Created

impl Send for Created

impl Sync for Created

impl Unpin for Created

impl UnwindSafe for Created

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.