Struct ate_auth::Company[][src]

pub struct Company {
    pub registration_no: String,
    pub tax_id: String,
    pub phone_number: String,
    pub email: String,
    pub do_business_as: String,
    pub legal_business_name: String,
    pub share_holders: DaoVec<Person>,
}

Fields

registration_no: Stringtax_id: Stringphone_number: Stringemail: Stringdo_business_as: Stringlegal_business_name: Stringshare_holders: DaoVec<Person>

Trait Implementations

impl Clone for Company[src]

impl Debug for Company[src]

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

impl Serialize for Company[src]

Auto Trait Implementations

impl RefUnwindSafe for Company

impl Send for Company

impl Sync for Company

impl Unpin for Company

impl UnwindSafe for Company

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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,