stellar-client 0.1.2

A client interface to the stellar Horizon API
Documentation
/// This effect can be the result of a set options operation and represents
/// the fact that an account's home domain has changed
#[derive(Debug, Deserialize, Clone)]
pub struct HomeDomainUpdated {
    account: String,
    home_domain: String,
}

impl HomeDomainUpdated {
    /// Creates a HomeDomainUpdated effect
    pub fn new(account: String, home_domain: String) -> HomeDomainUpdated {
        HomeDomainUpdated {
            account,
            home_domain,
        }
    }

    /// The public address of the account whose home_domain was updated
    pub fn account(&self) -> &String {
        &self.account
    }

    /// The home domain used for reverse federation lookup
    pub fn home_domain(&self) -> &String {
        &self.home_domain
    }
}