[][src]Struct stellar_toml::PointOfContact

pub struct PointOfContact {
    pub name: Option<String>,
    pub email: Option<String>,
    pub keybase: Option<String>,
    pub telegram: Option<String>,
    pub twitter: Option<String>,
    pub github: Option<String>,
    pub id_photo_hash: Option<String>,
    pub verification_photo_hash: Option<String>,
}

Contains identifying information for the primary point of contact or principal(s) of the organization.

Fields

name: Option<String>

Full legal name.

email: Option<String>

Business email address for the principal.

keybase: Option<String>

Personal Keybase account.

Should include proof of ownership for other online accounts, as well as the organization's domain.

telegram: Option<String>

Personal Telegram account.

twitter: Option<String>

Personal Twitter account.

github: Option<String>

Personal Github account.

id_photo_hash: Option<String>

SHA-256 hash of a photo of the principal's government-issued photo ID.

verification_photo_hash: Option<String>

SHA-256 hash of a verification photo of principal.

Should be well-lit and contain: principal holding ID card and signed, dated, hand-written message stating I, $NAME, am a principal of $ORG_NAME, a Stellar token issuer with address $ISSUER_ADDRESS.

Trait Implementations

impl Clone for PointOfContact[src]

impl Debug for PointOfContact[src]

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

impl Serialize for PointOfContact[src]

Auto Trait Implementations

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.