Struct okta::Profile[][src]

pub struct Profile {
    pub first_name: String,
    pub last_name: String,
    pub display_name: String,
    pub email: String,
    pub login: String,
    pub primary_phone: String,
    pub mobile_phone: String,
    pub street_address: String,
    pub city: String,
    pub state: String,
    pub zip_code: String,
    pub country_code: String,
    pub second_email: String,
    pub github_username: String,
    pub matrix_username: String,
}

Fields

first_name: Stringlast_name: Stringdisplay_name: Stringemail: Stringlogin: Stringprimary_phone: Stringmobile_phone: Stringstreet_address: Stringcity: Stringstate: Stringzip_code: Stringcountry_code: Stringsecond_email: Stringgithub_username: Stringmatrix_username: String

Trait Implementations

impl Clone for Profile[src]

impl Debug for Profile[src]

impl Default for Profile[src]

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

impl Serialize for Profile[src]

Auto Trait Implementations

impl RefUnwindSafe for Profile

impl Send for Profile

impl Sync for Profile

impl Unpin for Profile

impl UnwindSafe for Profile

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> 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.